-- ------------------------------------------------------------- -- TablePlus 4.7.1(428) -- -- https://tableplus.com/ -- -- Database: gurlushyk -- Generation Time: 2023-07-28 01:31:23.8600 -- ------------------------------------------------------------- /*!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 AUTO_INCREMENT=8 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_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=3856 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 AUTO_INCREMENT=8 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=1294 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=23 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 AUTO_INCREMENT=3 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', `is_featured` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 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, `sort_roder` int NOT NULL DEFAULT '0', `manufacturer` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ends_at` datetime DEFAULT NULL, `price` decimal(10,2) DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `place` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vendor_id` int 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', `is_home` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; DROP TABLE IF EXISTS `tps_birzha_slider_app`; CREATE TABLE `tps_birzha_slider_app` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `img` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'slider1', `note` text COLLATE utf8mb4_unicode_ci, `order` int DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB 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, `content` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; DROP TABLE IF EXISTS `tps_birzha_user_sliders`; CREATE TABLE `tps_birzha_user_sliders` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `user_id` int DEFAULT NULL, `img` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; DROP TABLE IF EXISTS `tps_birzha_users_categories`; CREATE TABLE `tps_birzha_users_categories` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `category_id` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 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 AUTO_INCREMENT=3 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, `type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shop_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slogan` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `work_time` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_instagram` tinyint(1) NOT NULL DEFAULT '0', `note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sliders` text COLLATE utf8mb4_unicode_ci, `is_featured` tinyint(1) NOT NULL DEFAULT '0', `banner` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_category` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `users_email_unique` (`email`), UNIQUE KEY `users_login_unique` (`username`), KEY `users_activation_code_index` (`activation_code`), KEY `users_reset_password_code_index` (`reset_password_code`), KEY `users_login_index` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=3 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'), (1414, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:18:10', '2023-07-23 06:18:10'), (1415, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:19:10', '2023-07-23 06:19:10'), (1416, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:20:10', '2023-07-23 06:20:10'), (1417, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:21:10', '2023-07-23 06:21:10'), (1418, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:22:10', '2023-07-23 06:22:10'), (1419, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:23:10', '2023-07-23 06:23:10'), (1420, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:24:10', '2023-07-23 06:24:10'), (1421, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:25:10', '2023-07-23 06:25:10'), (1422, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:26:10', '2023-07-23 06:26:10'), (1423, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:27:10', '2023-07-23 06:27:10'), (1424, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:28:10', '2023-07-23 06:28:10'), (1425, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:29:10', '2023-07-23 06:29:10'), (1426, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:30:10', '2023-07-23 06:30:10'), (1427, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:31:10', '2023-07-23 06:31:10'), (1428, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:32:10', '2023-07-23 06:32:10'), (1429, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:33:10', '2023-07-23 06:33:10'), (1430, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:34:10', '2023-07-23 06:34:10'), (1431, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:35:10', '2023-07-23 06:35:10'), (1432, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:36:10', '2023-07-23 06:36:10'), (1433, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:37:10', '2023-07-23 06:37:10'), (1434, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:38:10', '2023-07-23 06:38:10'), (1435, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:39:10', '2023-07-23 06:39:10'), (1436, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:40:10', '2023-07-23 06:40:10'), (1437, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:41:10', '2023-07-23 06:41:10'), (1438, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:42:10', '2023-07-23 06:42:10'), (1439, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:43:10', '2023-07-23 06:43:10'), (1440, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:44:10', '2023-07-23 06:44:10'), (1441, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:45:10', '2023-07-23 06:45:10'), (1442, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:46:10', '2023-07-23 06:46:10'), (1443, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:47:10', '2023-07-23 06:47:10'), (1444, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:48:10', '2023-07-23 06:48:10'), (1445, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:49:10', '2023-07-23 06:49:10'), (1446, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:50:10', '2023-07-23 06:50:10'), (1447, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:51:10', '2023-07-23 06:51:10'), (1448, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:52:10', '2023-07-23 06:52:10'), (1449, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:53:10', '2023-07-23 06:53:10'), (1450, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:54:10', '2023-07-23 06:54:10'), (1451, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:55:10', '2023-07-23 06:55:10'), (1452, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:56:10', '2023-07-23 06:56:10'), (1453, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:57:10', '2023-07-23 06:57:10'), (1454, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:58:10', '2023-07-23 06:58:10'), (1455, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects 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:59:10', '2023-07-23 06:59:10'), (1456, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:00:10', '2023-07-23 07:00:10'), (1457, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:01:10', '2023-07-23 07:01:10'), (1458, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:02:10', '2023-07-23 07:02:10'), (1459, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:03:10', '2023-07-23 07:03:10'), (1460, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:04:10', '2023-07-23 07:04:10'), (1461, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:05:10', '2023-07-23 07:05:10'), (1462, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:06:10', '2023-07-23 07:06:10'), (1463, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:07:10', '2023-07-23 07:07:10'), (1464, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:08:10', '2023-07-23 07:08:10'), (1465, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:09:10', '2023-07-23 07:09:10'), (1466, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:10:10', '2023-07-23 07:10:10'), (1467, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:11:10', '2023-07-23 07:11:10'), (1468, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:12:10', '2023-07-23 07:12:10'), (1469, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:13:10', '2023-07-23 07:13:10'), (1470, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:14:10', '2023-07-23 07:14:10'), (1471, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:15:10', '2023-07-23 07:15:10'), (1472, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:16:10', '2023-07-23 07:16:10'), (1473, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:17:10', '2023-07-23 07:17:10'), (1474, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:18:10', '2023-07-23 07:18:10'), (1475, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:19:10', '2023-07-23 07:19:10'), (1476, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:20:10', '2023-07-23 07:20:10'), (1477, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:21:10', '2023-07-23 07:21:10'), (1478, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:22:10', '2023-07-23 07:22:10'), (1479, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:23:10', '2023-07-23 07:23:10'), (1480, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:24:10', '2023-07-23 07:24:10'), (1481, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:25:10', '2023-07-23 07:25:10'), (1482, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:26:10', '2023-07-23 07:26:10'), (1483, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:27:10', '2023-07-23 07:27:10'), (1484, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:28:10', '2023-07-23 07:28:10'), (1485, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:29:10', '2023-07-23 07:29:10'), (1486, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:30:10', '2023-07-23 07:30:10'), (1487, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:31:10', '2023-07-23 07:31:10'), (1488, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:32:10', '2023-07-23 07:32:10'), (1489, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:33:10', '2023-07-23 07:33:10'), (1490, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:34:10', '2023-07-23 07:34:10'), (1491, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:35:10', '2023-07-23 07:35:10'), (1492, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:36:10', '2023-07-23 07:36:10'), (1493, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:37:10', '2023-07-23 07:37:10'), (1494, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:38:10', '2023-07-23 07:38:10'), (1495, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:39:10', '2023-07-23 07:39:10'), (1496, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:40:10', '2023-07-23 07:40:10'), (1497, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:41:10', '2023-07-23 07:41:10'), (1498, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:42:10', '2023-07-23 07:42:10'), (1499, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:43:10', '2023-07-23 07:43:10'), (1500, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:44:10', '2023-07-23 07:44:10'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (1501, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:45:10', '2023-07-23 07:45:10'), (1502, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:46:10', '2023-07-23 07:46:10'), (1503, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:47:10', '2023-07-23 07:47:10'), (1504, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:48:10', '2023-07-23 07:48:10'), (1505, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:49:10', '2023-07-23 07:49:10'), (1506, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:50:10', '2023-07-23 07:50:10'), (1507, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:51:10', '2023-07-23 07:51:10'), (1508, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:52:10', '2023-07-23 07:52:10'), (1509, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:53:10', '2023-07-23 07:53:10'), (1510, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:54:10', '2023-07-23 07:54:10'), (1511, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:55:10', '2023-07-23 07:55:10'), (1512, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:56:10', '2023-07-23 07:56:10'), (1513, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:57:10', '2023-07-23 07:57:10'), (1514, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:58:10', '2023-07-23 07:58:10'), (1515, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 07:59:10', '2023-07-23 07:59:10'), (1516, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:00:10', '2023-07-23 08:00:10'), (1517, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:01:10', '2023-07-23 08:01:10'), (1518, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:02:10', '2023-07-23 08:02:10'), (1519, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:03:10', '2023-07-23 08:03:10'), (1520, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:04:10', '2023-07-23 08:04:10'), (1521, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:05:10', '2023-07-23 08:05:10'), (1522, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:06:10', '2023-07-23 08:06:10'), (1523, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:07:10', '2023-07-23 08:07:10'), (1524, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:08:10', '2023-07-23 08:08:10'), (1525, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:09:10', '2023-07-23 08:09:10'), (1526, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:10:10', '2023-07-23 08:10:10'), (1527, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:11:10', '2023-07-23 08:11:10'), (1528, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:12:10', '2023-07-23 08:12:10'), (1529, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:13:10', '2023-07-23 08:13:10'), (1530, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:14:10', '2023-07-23 08:14:10'), (1531, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:15:10', '2023-07-23 08:15:10'), (1532, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:16:10', '2023-07-23 08:16:10'), (1533, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:17:10', '2023-07-23 08:17:10'), (1534, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:18:10', '2023-07-23 08:18:10'), (1535, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:19:10', '2023-07-23 08:19:10'), (1536, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:20:10', '2023-07-23 08:20:10'), (1537, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:21:10', '2023-07-23 08:21:10'), (1538, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:22:10', '2023-07-23 08:22:10'), (1539, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:23:10', '2023-07-23 08:23:10'), (1540, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:24:10', '2023-07-23 08:24:10'), (1541, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:25:10', '2023-07-23 08:25:10'), (1542, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:26:10', '2023-07-23 08:26:10'), (1543, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:27:10', '2023-07-23 08:27:10'), (1544, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:28:10', '2023-07-23 08:28:10'), (1545, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:29:10', '2023-07-23 08:29:10'), (1546, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:30:10', '2023-07-23 08:30:10'), (1547, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:31:10', '2023-07-23 08:31:10'), (1548, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:32:10', '2023-07-23 08:32:10'), (1549, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:33:10', '2023-07-23 08:33:10'), (1550, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:34:10', '2023-07-23 08:34:10'), (1551, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:35:10', '2023-07-23 08:35:10'), (1552, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:36:10', '2023-07-23 08:36:10'), (1553, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:37:10', '2023-07-23 08:37:10'), (1554, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:38:10', '2023-07-23 08:38:10'), (1555, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:39:10', '2023-07-23 08:39:10'), (1556, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:40:10', '2023-07-23 08:40:10'), (1557, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:41:10', '2023-07-23 08:41:10'), (1558, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:42:10', '2023-07-23 08:42:10'), (1559, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:43:10', '2023-07-23 08:43:10'), (1560, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:44:10', '2023-07-23 08:44:10'), (1561, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:45:10', '2023-07-23 08:45:10'), (1562, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:46:10', '2023-07-23 08:46:10'), (1563, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:47:10', '2023-07-23 08:47:10'), (1564, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:48:10', '2023-07-23 08:48:10'), (1565, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:49:10', '2023-07-23 08:49:10'), (1566, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:50:10', '2023-07-23 08:50:10'), (1567, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:51:10', '2023-07-23 08:51:10'), (1568, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:52:10', '2023-07-23 08:52:10'), (1569, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:53:10', '2023-07-23 08:53:10'), (1570, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:54:10', '2023-07-23 08:54:10'), (1571, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:55:10', '2023-07-23 08:55:10'), (1572, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:56:10', '2023-07-23 08:56:10'), (1573, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:57:10', '2023-07-23 08:57:10'), (1574, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:58:10', '2023-07-23 08:58:10'), (1575, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 08:59:10', '2023-07-23 08:59:10'), (1576, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:00:10', '2023-07-23 09:00:10'), (1577, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:01:10', '2023-07-23 09:01:10'), (1578, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:02:10', '2023-07-23 09:02:10'), (1579, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:03:10', '2023-07-23 09:03:10'), (1580, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:04:10', '2023-07-23 09:04:10'), (1581, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:05:10', '2023-07-23 09:05:10'), (1582, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:06:11', '2023-07-23 09:06:11'), (1583, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:07:10', '2023-07-23 09:07:10'), (1584, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:08:10', '2023-07-23 09:08:10'), (1585, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:09:10', '2023-07-23 09:09:10'), (1586, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:10:10', '2023-07-23 09:10:10'), (1587, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:11:10', '2023-07-23 09:11:10'), (1588, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:12:10', '2023-07-23 09:12:10'), (1589, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:13:10', '2023-07-23 09:13:10'), (1590, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:14:11', '2023-07-23 09:14:11'), (1591, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:15:10', '2023-07-23 09:15:10'), (1592, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:16:10', '2023-07-23 09:16:10'), (1593, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:17:10', '2023-07-23 09:17:10'), (1594, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:18:11', '2023-07-23 09:18:11'), (1595, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:19:10', '2023-07-23 09:19:10'), (1596, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:20:10', '2023-07-23 09:20:10'), (1597, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:21:10', '2023-07-23 09:21:10'), (1598, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:22:10', '2023-07-23 09:22:10'), (1599, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:23:10', '2023-07-23 09:23:10'), (1600, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:24:10', '2023-07-23 09:24:10'), (1601, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:25:10', '2023-07-23 09:25:10'), (1602, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:26:10', '2023-07-23 09:26:10'), (1603, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:27:11', '2023-07-23 09:27:11'), (1604, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:28:10', '2023-07-23 09:28:10'), (1605, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:29:10', '2023-07-23 09:29:10'), (1606, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:30:10', '2023-07-23 09:30:10'), (1607, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:31:10', '2023-07-23 09:31:10'), (1608, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:32:10', '2023-07-23 09:32:10'), (1609, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:33:10', '2023-07-23 09:33:10'), (1610, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:34:10', '2023-07-23 09:34:10'), (1611, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:35:10', '2023-07-23 09:35:10'), (1612, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:36:10', '2023-07-23 09:36:10'), (1613, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:37:10', '2023-07-23 09:37:10'), (1614, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:38:10', '2023-07-23 09:38:10'), (1615, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:39:10', '2023-07-23 09:39:10'), (1616, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:40:10', '2023-07-23 09:40:10'), (1617, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:41:10', '2023-07-23 09:41:10'), (1618, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:42:10', '2023-07-23 09:42:10'), (1619, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:43:10', '2023-07-23 09:43:10'), (1620, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:44:11', '2023-07-23 09:44:11'), (1621, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:45:10', '2023-07-23 09:45:10'), (1622, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:46:11', '2023-07-23 09:46:11'), (1623, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:47:10', '2023-07-23 09:47:10'), (1624, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:48:10', '2023-07-23 09:48:10'), (1625, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:49:11', '2023-07-23 09:49:11'), (1626, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:50:11', '2023-07-23 09:50:11'), (1627, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:51:11', '2023-07-23 09:51:11'), (1628, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:52:10', '2023-07-23 09:52:10'), (1629, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:53:10', '2023-07-23 09:53:10'), (1630, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:54:10', '2023-07-23 09:54:10'), (1631, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:55:11', '2023-07-23 09:55:11'), (1632, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:56:11', '2023-07-23 09:56:11'), (1633, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:57:11', '2023-07-23 09:57:11'), (1634, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:58:11', '2023-07-23 09:58:11'), (1635, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 09:59:10', '2023-07-23 09:59:10'), (1636, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:00:10', '2023-07-23 10:00:10'), (1637, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:01:11', '2023-07-23 10:01:11'), (1638, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:02:10', '2023-07-23 10:02:10'), (1639, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:03:11', '2023-07-23 10:03:11'), (1640, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:04:10', '2023-07-23 10:04:10'), (1641, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:05:11', '2023-07-23 10:05:11'), (1642, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:06:11', '2023-07-23 10:06:11'), (1643, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:07:10', '2023-07-23 10:07:10'), (1644, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:08:11', '2023-07-23 10:08:11'), (1645, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:09:10', '2023-07-23 10:09:10'), (1646, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:10:10', '2023-07-23 10:10:10'), (1647, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:11:11', '2023-07-23 10:11:11'), (1648, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:12:10', '2023-07-23 10:12:10'), (1649, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:13:10', '2023-07-23 10:13:10'), (1650, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:14:10', '2023-07-23 10:14:10'), (1651, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:15:10', '2023-07-23 10:15:10'), (1652, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:16:10', '2023-07-23 10:16:10'), (1653, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:17:11', '2023-07-23 10:17:11'), (1654, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:18:11', '2023-07-23 10:18:11'), (1655, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:19:11', '2023-07-23 10:19:11'), (1656, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:20:10', '2023-07-23 10:20:10'), (1657, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:21:11', '2023-07-23 10:21:11'), (1658, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:22:10', '2023-07-23 10:22:10'), (1659, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:23:10', '2023-07-23 10:23:10'), (1660, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:24:11', '2023-07-23 10:24:11'), (1661, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:25:11', '2023-07-23 10:25:11'), (1662, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:26:11', '2023-07-23 10:26:11'), (1663, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:27:11', '2023-07-23 10:27:11'), (1664, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:28:11', '2023-07-23 10:28:11'), (1665, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:29:11', '2023-07-23 10:29:11'), (1666, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:30:11', '2023-07-23 10:30:11'), (1667, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:31:11', '2023-07-23 10:31:11'), (1668, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:32:11', '2023-07-23 10:32:11'), (1669, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:33:11', '2023-07-23 10:33:11'), (1670, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:34:11', '2023-07-23 10:34:11'), (1671, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:35:11', '2023-07-23 10:35:11'), (1672, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:36:11', '2023-07-23 10:36:11'), (1673, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:37:11', '2023-07-23 10:37:11'), (1674, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:38:11', '2023-07-23 10:38:11'), (1675, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:39:11', '2023-07-23 10:39:11'), (1676, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:40:11', '2023-07-23 10:40:11'), (1677, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:41:11', '2023-07-23 10:41:11'), (1678, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:42:11', '2023-07-23 10:42:11'), (1679, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:43:11', '2023-07-23 10:43:11'), (1680, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:44:11', '2023-07-23 10:44:11'), (1681, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:45:11', '2023-07-23 10:45:11'), (1682, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:46:11', '2023-07-23 10:46:11'), (1683, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:47:11', '2023-07-23 10:47:11'), (1684, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:48:11', '2023-07-23 10:48:11'), (1685, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:49:11', '2023-07-23 10:49:11'), (1686, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:50:11', '2023-07-23 10:50:11'), (1687, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:51:11', '2023-07-23 10:51:11'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (1688, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:52:11', '2023-07-23 10:52:11'), (1689, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:53:11', '2023-07-23 10:53:11'), (1690, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:54:11', '2023-07-23 10:54:11'), (1691, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:55:11', '2023-07-23 10:55:11'), (1692, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:56:11', '2023-07-23 10:56:11'), (1693, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:57:11', '2023-07-23 10:57:11'), (1694, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:58:11', '2023-07-23 10:58:11'), (1695, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 10:59:11', '2023-07-23 10:59:11'), (1696, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:00:11', '2023-07-23 11:00:11'), (1697, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:01:11', '2023-07-23 11:01:11'), (1698, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:02:11', '2023-07-23 11:02:11'), (1699, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:03:11', '2023-07-23 11:03:11'), (1700, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:04:11', '2023-07-23 11:04:11'), (1701, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:05:11', '2023-07-23 11:05:11'), (1702, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:06:11', '2023-07-23 11:06:11'), (1703, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:07:11', '2023-07-23 11:07:11'), (1704, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:08:11', '2023-07-23 11:08:11'), (1705, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:09:11', '2023-07-23 11:09:11'), (1706, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:10:11', '2023-07-23 11:10:11'), (1707, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:11:11', '2023-07-23 11:11:11'), (1708, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:12:11', '2023-07-23 11:12:11'), (1709, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:13:11', '2023-07-23 11:13:11'), (1710, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:14:11', '2023-07-23 11:14:11'), (1711, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:15:11', '2023-07-23 11:15:11'), (1712, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:16:11', '2023-07-23 11:16:11'), (1713, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:17:11', '2023-07-23 11:17:11'), (1714, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:18:11', '2023-07-23 11:18:11'), (1715, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:19:11', '2023-07-23 11:19:11'), (1716, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:20:11', '2023-07-23 11:20:11'), (1717, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:21:11', '2023-07-23 11:21:11'), (1718, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:22:11', '2023-07-23 11:22:11'), (1719, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:23:11', '2023-07-23 11:23:11'), (1720, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:24:11', '2023-07-23 11:24:11'), (1721, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:25:11', '2023-07-23 11:25:11'), (1722, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:26:11', '2023-07-23 11:26:11'), (1723, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:27:11', '2023-07-23 11:27:11'), (1724, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:28:11', '2023-07-23 11:28:11'), (1725, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:29:11', '2023-07-23 11:29:11'), (1726, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:30:11', '2023-07-23 11:30:11'), (1727, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:31:11', '2023-07-23 11:31:11'), (1728, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:32:11', '2023-07-23 11:32:11'), (1729, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:33:11', '2023-07-23 11:33:11'), (1730, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:34:11', '2023-07-23 11:34:11'), (1731, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:35:11', '2023-07-23 11:35:11'), (1732, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:36:11', '2023-07-23 11:36:11'), (1733, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:37:11', '2023-07-23 11:37:11'), (1734, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:38:11', '2023-07-23 11:38:11'), (1735, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:39:11', '2023-07-23 11:39:11'), (1736, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:40:11', '2023-07-23 11:40:11'), (1737, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:41:11', '2023-07-23 11:41:11'), (1738, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:42:11', '2023-07-23 11:42:11'), (1739, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:43:11', '2023-07-23 11:43:11'), (1740, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:44:11', '2023-07-23 11:44:11'), (1741, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:45:11', '2023-07-23 11:45:11'), (1742, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:46:11', '2023-07-23 11:46:11'), (1743, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:47:11', '2023-07-23 11:47:11'), (1744, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:48:11', '2023-07-23 11:48:11'), (1745, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:49:11', '2023-07-23 11:49:11'), (1746, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:50:11', '2023-07-23 11:50:11'), (1747, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:51:11', '2023-07-23 11:51:11'), (1748, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:52:11', '2023-07-23 11:52:11'), (1749, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:53:11', '2023-07-23 11:53:11'), (1750, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:54:11', '2023-07-23 11:54:11'), (1751, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:55:11', '2023-07-23 11:55:11'), (1752, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:56:11', '2023-07-23 11:56:11'), (1753, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:57:11', '2023-07-23 11:57:11'), (1754, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:58:11', '2023-07-23 11:58:11'), (1755, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 11:59:11', '2023-07-23 11:59:11'), (1756, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:00:11', '2023-07-23 12:00:11'), (1757, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:01:11', '2023-07-23 12:01:11'), (1758, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:02:11', '2023-07-23 12:02:11'), (1759, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:03:11', '2023-07-23 12:03:11'), (1760, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:04:11', '2023-07-23 12:04:11'), (1761, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:05:11', '2023-07-23 12:05:11'), (1762, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:06:11', '2023-07-23 12:06:11'), (1763, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:07:11', '2023-07-23 12:07:11'), (1764, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:08:11', '2023-07-23 12:08:11'), (1765, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:09:11', '2023-07-23 12:09:11'), (1766, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:10:11', '2023-07-23 12:10:11'), (1767, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:11:11', '2023-07-23 12:11:11'), (1768, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:12:11', '2023-07-23 12:12:11'), (1769, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:13:11', '2023-07-23 12:13:11'), (1770, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:14:11', '2023-07-23 12:14:11'), (1771, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:15:11', '2023-07-23 12:15:11'), (1772, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:16:11', '2023-07-23 12:16:11'), (1773, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:17:11', '2023-07-23 12:17:11'), (1774, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:18:11', '2023-07-23 12:18:11'), (1775, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:19:11', '2023-07-23 12:19:11'), (1776, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:20:11', '2023-07-23 12:20:11'), (1777, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:21:11', '2023-07-23 12:21:11'), (1778, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:22:11', '2023-07-23 12:22:11'), (1779, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:23:11', '2023-07-23 12:23:11'), (1780, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:24:11', '2023-07-23 12:24:11'), (1781, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:25:11', '2023-07-23 12:25:11'), (1782, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:26:11', '2023-07-23 12:26:11'), (1783, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:27:11', '2023-07-23 12:27:11'), (1784, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:28:11', '2023-07-23 12:28:11'), (1785, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:29:11', '2023-07-23 12:29:11'), (1786, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:30:11', '2023-07-23 12:30:11'), (1787, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:31:11', '2023-07-23 12:31:11'), (1788, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:32:11', '2023-07-23 12:32:11'), (1789, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:33:11', '2023-07-23 12:33:11'), (1790, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:34:11', '2023-07-23 12:34:11'), (1791, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:35:11', '2023-07-23 12:35:11'), (1792, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:36:11', '2023-07-23 12:36:11'), (1793, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:37:11', '2023-07-23 12:37:11'), (1794, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:38:11', '2023-07-23 12:38:11'), (1795, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:39:11', '2023-07-23 12:39:11'), (1796, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:40:11', '2023-07-23 12:40:11'), (1797, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:41:11', '2023-07-23 12:41:11'), (1798, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:42:11', '2023-07-23 12:42:11'), (1799, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:43:11', '2023-07-23 12:43:11'), (1800, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:44:11', '2023-07-23 12:44:11'), (1801, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:45:11', '2023-07-23 12:45:11'), (1802, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:46:11', '2023-07-23 12:46:11'), (1803, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:47:11', '2023-07-23 12:47:11'), (1804, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:48:11', '2023-07-23 12:48:11'), (1805, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:49:11', '2023-07-23 12:49:11'), (1806, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:50:11', '2023-07-23 12:50:11'), (1807, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:51:11', '2023-07-23 12:51:11'), (1808, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:52:11', '2023-07-23 12:52:11'), (1809, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:53:11', '2023-07-23 12:53:11'), (1810, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:54:11', '2023-07-23 12:54:11'), (1811, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:55:11', '2023-07-23 12:55:11'), (1812, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:56:11', '2023-07-23 12:56:11'), (1813, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:57:11', '2023-07-23 12:57:11'), (1814, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:58:11', '2023-07-23 12:58:11'), (1815, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 12:59:11', '2023-07-23 12:59:11'), (1816, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:00:11', '2023-07-23 13:00:11'), (1817, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:01:11', '2023-07-23 13:01:11'), (1818, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:02:11', '2023-07-23 13:02:11'), (1819, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:03:11', '2023-07-23 13:03:11'), (1820, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:04:12', '2023-07-23 13:04:12'), (1821, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:05:11', '2023-07-23 13:05:11'), (1822, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:06:11', '2023-07-23 13:06:11'), (1823, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:07:11', '2023-07-23 13:07:11'), (1824, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:08:11', '2023-07-23 13:08:11'), (1825, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:09:11', '2023-07-23 13:09:11'), (1826, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:10:11', '2023-07-23 13:10:11'), (1827, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:11:11', '2023-07-23 13:11:11'), (1828, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:12:11', '2023-07-23 13:12:11'), (1829, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:13:11', '2023-07-23 13:13:11'), (1830, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:14:11', '2023-07-23 13:14:11'), (1831, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:15:11', '2023-07-23 13:15:11'), (1832, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:16:11', '2023-07-23 13:16:11'), (1833, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:17:11', '2023-07-23 13:17:11'), (1834, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:18:11', '2023-07-23 13:18:11'), (1835, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:19:11', '2023-07-23 13:19:11'), (1836, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:20:11', '2023-07-23 13:20:11'), (1837, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:21:11', '2023-07-23 13:21:11'), (1838, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:22:11', '2023-07-23 13:22:11'), (1839, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:23:11', '2023-07-23 13:23:11'), (1840, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:24:11', '2023-07-23 13:24:11'), (1841, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:25:11', '2023-07-23 13:25:11'), (1842, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:26:11', '2023-07-23 13:26:11'), (1843, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:27:11', '2023-07-23 13:27:11'), (1844, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:28:11', '2023-07-23 13:28:11'), (1845, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:29:11', '2023-07-23 13:29:11'), (1846, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:30:11', '2023-07-23 13:30:11'), (1847, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:31:11', '2023-07-23 13:31:11'), (1848, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:32:11', '2023-07-23 13:32:11'), (1849, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:33:12', '2023-07-23 13:33:12'), (1850, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:34:11', '2023-07-23 13:34:11'), (1851, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:35:11', '2023-07-23 13:35:11'), (1852, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:36:11', '2023-07-23 13:36:11'), (1853, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:37:11', '2023-07-23 13:37:11'), (1854, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:38:11', '2023-07-23 13:38:11'), (1855, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:39:11', '2023-07-23 13:39:11'), (1856, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:40:11', '2023-07-23 13:40:11'), (1857, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:41:12', '2023-07-23 13:41:12'), (1858, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:42:11', '2023-07-23 13:42:11'), (1859, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:43:11', '2023-07-23 13:43:11'), (1860, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:44:11', '2023-07-23 13:44:11'), (1861, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:45:11', '2023-07-23 13:45:11'), (1862, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:46:11', '2023-07-23 13:46:11'), (1863, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:47:11', '2023-07-23 13:47:11'), (1864, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:48:11', '2023-07-23 13:48:11'), (1865, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:49:11', '2023-07-23 13:49:11'), (1866, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:50:11', '2023-07-23 13:50:11'), (1867, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:51:11', '2023-07-23 13:51:11'), (1868, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:52:11', '2023-07-23 13:52:11'), (1869, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:53:11', '2023-07-23 13:53:11'), (1870, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:54:11', '2023-07-23 13:54:11'), (1871, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:55:11', '2023-07-23 13:55:11'), (1872, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:56:11', '2023-07-23 13:56:11'), (1873, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:57:11', '2023-07-23 13:57:11'), (1874, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:58:11', '2023-07-23 13:58:11'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (1875, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 13:59:11', '2023-07-23 13:59:11'), (1876, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:00:11', '2023-07-23 14:00:11'), (1877, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:01:11', '2023-07-23 14:01:11'), (1878, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:02:11', '2023-07-23 14:02:11'), (1879, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:03:11', '2023-07-23 14:03:11'), (1880, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:04:11', '2023-07-23 14:04:11'), (1881, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:05:11', '2023-07-23 14:05:11'), (1882, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:06:11', '2023-07-23 14:06:11'), (1883, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:07:11', '2023-07-23 14:07:11'), (1884, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:08:11', '2023-07-23 14:08:11'), (1885, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:09:12', '2023-07-23 14:09:12'), (1886, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:10:11', '2023-07-23 14:10:11'), (1887, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:11:11', '2023-07-23 14:11:11'), (1888, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:12:11', '2023-07-23 14:12:11'), (1889, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:13:12', '2023-07-23 14:13:12'), (1890, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:14:11', '2023-07-23 14:14:11'), (1891, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:15:11', '2023-07-23 14:15:11'), (1892, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:16:11', '2023-07-23 14:16:11'), (1893, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:17:11', '2023-07-23 14:17:11'), (1894, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:18:12', '2023-07-23 14:18:12'), (1895, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:19:11', '2023-07-23 14:19:11'), (1896, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:20:11', '2023-07-23 14:20:11'), (1897, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:21:11', '2023-07-23 14:21:11'), (1898, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:22:11', '2023-07-23 14:22:11'), (1899, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:23:11', '2023-07-23 14:23:11'), (1900, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:24:11', '2023-07-23 14:24:11'), (1901, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:25:11', '2023-07-23 14:25:11'), (1902, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:26:11', '2023-07-23 14:26:11'), (1903, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:27:11', '2023-07-23 14:27:11'), (1904, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:28:11', '2023-07-23 14:28:11'), (1905, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:29:11', '2023-07-23 14:29:11'), (1906, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:30:11', '2023-07-23 14:30:11'), (1907, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:31:11', '2023-07-23 14:31:11'), (1908, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:32:11', '2023-07-23 14:32:11'), (1909, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:33:11', '2023-07-23 14:33:11'), (1910, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:34:12', '2023-07-23 14:34:12'), (1911, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:35:11', '2023-07-23 14:35:11'), (1912, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:36:11', '2023-07-23 14:36:11'), (1913, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:37:11', '2023-07-23 14:37:11'), (1914, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:38:11', '2023-07-23 14:38:11'), (1915, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:39:11', '2023-07-23 14:39:11'), (1916, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:40:11', '2023-07-23 14:40:11'), (1917, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:41:11', '2023-07-23 14:41:11'), (1918, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:42:11', '2023-07-23 14:42:11'), (1919, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:43:11', '2023-07-23 14:43:11'), (1920, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:44:11', '2023-07-23 14:44:11'), (1921, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:45:11', '2023-07-23 14:45:11'), (1922, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:46:11', '2023-07-23 14:46:11'), (1923, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:47:11', '2023-07-23 14:47:11'), (1924, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:48:12', '2023-07-23 14:48:12'), (1925, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:49:11', '2023-07-23 14:49:11'), (1926, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:50:11', '2023-07-23 14:50:11'), (1927, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:51:12', '2023-07-23 14:51:12'), (1928, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:52:11', '2023-07-23 14:52:11'), (1929, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:53:12', '2023-07-23 14:53:12'), (1930, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:54:12', '2023-07-23 14:54:12'), (1931, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:55:12', '2023-07-23 14:55:12'), (1932, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:56:12', '2023-07-23 14:56:12'), (1933, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:57:12', '2023-07-23 14:57:12'), (1934, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:58:12', '2023-07-23 14:58:12'), (1935, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 14:59:12', '2023-07-23 14:59:12'), (1936, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:00:12', '2023-07-23 15:00:12'), (1937, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:01:12', '2023-07-23 15:01:12'), (1938, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:02:12', '2023-07-23 15:02:12'), (1939, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:03:12', '2023-07-23 15:03:12'), (1940, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:04:12', '2023-07-23 15:04:12'), (1941, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:05:12', '2023-07-23 15:05:12'), (1942, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:06:12', '2023-07-23 15:06:12'), (1943, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:07:12', '2023-07-23 15:07:12'), (1944, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:08:12', '2023-07-23 15:08:12'), (1945, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:09:12', '2023-07-23 15:09:12'), (1946, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:10:12', '2023-07-23 15:10:12'), (1947, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:11:12', '2023-07-23 15:11:12'), (1948, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:12:12', '2023-07-23 15:12:12'), (1949, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:13:12', '2023-07-23 15:13:12'), (1950, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:14:12', '2023-07-23 15:14:12'), (1951, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:15:12', '2023-07-23 15:15:12'), (1952, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:16:12', '2023-07-23 15:16:12'), (1953, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:17:12', '2023-07-23 15:17:12'), (1954, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:18:12', '2023-07-23 15:18:12'), (1955, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:19:12', '2023-07-23 15:19:12'), (1956, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:20:12', '2023-07-23 15:20:12'), (1957, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:21:12', '2023-07-23 15:21:12'), (1958, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:22:12', '2023-07-23 15:22:12'), (1959, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:23:12', '2023-07-23 15:23:12'), (1960, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:24:12', '2023-07-23 15:24:12'), (1961, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:25:12', '2023-07-23 15:25:12'), (1962, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:26:12', '2023-07-23 15:26:12'), (1963, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:27:12', '2023-07-23 15:27:12'), (1964, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:28:12', '2023-07-23 15:28:12'), (1965, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:29:12', '2023-07-23 15:29:12'), (1966, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:30:12', '2023-07-23 15:30:12'), (1967, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:31:12', '2023-07-23 15:31:12'), (1968, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:32:12', '2023-07-23 15:32:12'), (1969, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:33:12', '2023-07-23 15:33:12'), (1970, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:34:12', '2023-07-23 15:34:12'), (1971, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:35:12', '2023-07-23 15:35:12'), (1972, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:36:12', '2023-07-23 15:36:12'), (1973, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:37:12', '2023-07-23 15:37:12'), (1974, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:38:12', '2023-07-23 15:38:12'), (1975, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:39:12', '2023-07-23 15:39:12'), (1976, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:40:12', '2023-07-23 15:40:12'), (1977, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:41:12', '2023-07-23 15:41:12'), (1978, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:42:12', '2023-07-23 15:42:12'), (1979, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:43:12', '2023-07-23 15:43:12'), (1980, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:44:12', '2023-07-23 15:44:12'), (1981, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:45:12', '2023-07-23 15:45:12'), (1982, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:46:12', '2023-07-23 15:46:12'), (1983, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:47:12', '2023-07-23 15:47:12'), (1984, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:48:12', '2023-07-23 15:48:12'), (1985, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:49:12', '2023-07-23 15:49:12'), (1986, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:50:12', '2023-07-23 15:50:12'), (1987, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:51:12', '2023-07-23 15:51:12'), (1988, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:52:12', '2023-07-23 15:52:12'), (1989, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:53:12', '2023-07-23 15:53:12'), (1990, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:54:12', '2023-07-23 15:54:12'), (1991, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:55:12', '2023-07-23 15:55:12'), (1992, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:56:12', '2023-07-23 15:56:12'), (1993, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:57:12', '2023-07-23 15:57:12'), (1994, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:58:12', '2023-07-23 15:58:12'), (1995, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 15:59:12', '2023-07-23 15:59:12'), (1996, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:00:12', '2023-07-23 16:00:12'), (1997, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:01:12', '2023-07-23 16:01:12'), (1998, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:02:12', '2023-07-23 16:02:12'), (1999, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:03:12', '2023-07-23 16:03:12'), (2000, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:04:12', '2023-07-23 16:04:12'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (2001, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:05:12', '2023-07-23 16:05:12'), (2002, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:06:12', '2023-07-23 16:06:12'), (2003, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:07:12', '2023-07-23 16:07:12'), (2004, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:08:12', '2023-07-23 16:08:12'), (2005, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:09:12', '2023-07-23 16:09:12'), (2006, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:10:12', '2023-07-23 16:10:12'), (2007, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:11:12', '2023-07-23 16:11:12'), (2008, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:12:12', '2023-07-23 16:12:12'), (2009, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:13:12', '2023-07-23 16:13:12'), (2010, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:14:12', '2023-07-23 16:14:12'), (2011, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:15:12', '2023-07-23 16:15:12'), (2012, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:16:12', '2023-07-23 16:16:12'), (2013, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:17:12', '2023-07-23 16:17:12'), (2014, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:18:12', '2023-07-23 16:18:12'), (2015, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:19:12', '2023-07-23 16:19:12'), (2016, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:20:12', '2023-07-23 16:20:12'), (2017, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:21:12', '2023-07-23 16:21:12'), (2018, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:22:12', '2023-07-23 16:22:12'), (2019, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:23:12', '2023-07-23 16:23:12'), (2020, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:24:12', '2023-07-23 16:24:12'), (2021, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:25:12', '2023-07-23 16:25:12'), (2022, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:26:12', '2023-07-23 16:26:12'), (2023, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:27:12', '2023-07-23 16:27:12'), (2024, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:28:12', '2023-07-23 16:28:12'), (2025, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:29:12', '2023-07-23 16:29:12'), (2026, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:30:12', '2023-07-23 16:30:12'), (2027, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:31:12', '2023-07-23 16:31:12'), (2028, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:32:12', '2023-07-23 16:32:12'), (2029, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:33:12', '2023-07-23 16:33:12'), (2030, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:34:12', '2023-07-23 16:34:12'), (2031, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:35:12', '2023-07-23 16:35:12'), (2032, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:36:12', '2023-07-23 16:36:12'), (2033, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:37:12', '2023-07-23 16:37:12'), (2034, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:38:12', '2023-07-23 16:38:12'), (2035, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:39:12', '2023-07-23 16:39:12'), (2036, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:40:12', '2023-07-23 16:40:12'), (2037, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:41:12', '2023-07-23 16:41:12'), (2038, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:42:12', '2023-07-23 16:42:12'), (2039, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:43:12', '2023-07-23 16:43:12'), (2040, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:44:12', '2023-07-23 16:44:12'), (2041, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:45:12', '2023-07-23 16:45:12'), (2042, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:46:12', '2023-07-23 16:46:12'), (2043, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:47:12', '2023-07-23 16:47:12'), (2044, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:48:12', '2023-07-23 16:48:12'), (2045, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:49:12', '2023-07-23 16:49:12'), (2046, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:50:12', '2023-07-23 16:50:12'), (2047, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:51:12', '2023-07-23 16:51:12'), (2048, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:52:12', '2023-07-23 16:52:12'), (2049, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:53:12', '2023-07-23 16:53:12'), (2050, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:54:12', '2023-07-23 16:54:12'), (2051, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:55:12', '2023-07-23 16:55:12'), (2052, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:56:12', '2023-07-23 16:56:12'), (2053, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:57:12', '2023-07-23 16:57:12'), (2054, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:58:12', '2023-07-23 16:58:12'), (2055, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 16:59:12', '2023-07-23 16:59:12'), (2056, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:00:12', '2023-07-23 17:00:12'), (2057, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:01:12', '2023-07-23 17:01:12'), (2058, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:02:12', '2023-07-23 17:02:12'), (2059, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:03:12', '2023-07-23 17:03:12'), (2060, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:04:12', '2023-07-23 17:04:12'), (2061, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:05:12', '2023-07-23 17:05:12'), (2062, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:06:12', '2023-07-23 17:06:12'), (2063, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:07:12', '2023-07-23 17:07:12'), (2064, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:08:12', '2023-07-23 17:08:12'), (2065, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:09:12', '2023-07-23 17:09:12'), (2066, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:10:12', '2023-07-23 17:10:12'), (2067, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:11:12', '2023-07-23 17:11:12'), (2068, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:12:12', '2023-07-23 17:12:12'), (2069, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:13:12', '2023-07-23 17:13:12'), (2070, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:14:12', '2023-07-23 17:14:12'), (2071, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:15:12', '2023-07-23 17:15:12'), (2072, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:16:12', '2023-07-23 17:16:12'), (2073, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:17:12', '2023-07-23 17:17:12'), (2074, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:18:12', '2023-07-23 17:18:12'), (2075, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:19:12', '2023-07-23 17:19:12'), (2076, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:20:12', '2023-07-23 17:20:12'), (2077, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:21:12', '2023-07-23 17:21:12'), (2078, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:22:12', '2023-07-23 17:22:12'), (2079, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:23:12', '2023-07-23 17:23:12'), (2080, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:24:12', '2023-07-23 17:24:12'), (2081, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:25:12', '2023-07-23 17:25:12'), (2082, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:26:12', '2023-07-23 17:26:12'), (2083, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:27:12', '2023-07-23 17:27:12'), (2084, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:28:12', '2023-07-23 17:28:12'), (2085, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:29:12', '2023-07-23 17:29:12'), (2086, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:30:12', '2023-07-23 17:30:12'), (2087, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:31:12', '2023-07-23 17:31:12'), (2088, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:32:12', '2023-07-23 17:32:12'), (2089, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:33:12', '2023-07-23 17:33:12'), (2090, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:34:12', '2023-07-23 17:34:12'), (2091, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:35:12', '2023-07-23 17:35:12'), (2092, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:36:12', '2023-07-23 17:36:12'), (2093, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:37:12', '2023-07-23 17:37:12'), (2094, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:38:12', '2023-07-23 17:38:12'), (2095, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:39:12', '2023-07-23 17:39:12'), (2096, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:40:12', '2023-07-23 17:40:12'), (2097, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:41:12', '2023-07-23 17:41:12'), (2098, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:42:12', '2023-07-23 17:42:12'), (2099, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:43:12', '2023-07-23 17:43:12'), (2100, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:44:12', '2023-07-23 17:44:12'), (2101, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:45:12', '2023-07-23 17:45:12'), (2102, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:46:12', '2023-07-23 17:46:12'), (2103, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:47:12', '2023-07-23 17:47:12'), (2104, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:48:12', '2023-07-23 17:48:12'), (2105, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:49:12', '2023-07-23 17:49:12'), (2106, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:50:12', '2023-07-23 17:50:12'), (2107, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:51:12', '2023-07-23 17:51:12'), (2108, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:52:12', '2023-07-23 17:52:12'), (2109, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:53:12', '2023-07-23 17:53:12'), (2110, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:54:12', '2023-07-23 17:54:12'), (2111, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:55:12', '2023-07-23 17:55:12'), (2112, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:56:12', '2023-07-23 17:56:12'), (2113, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:57:12', '2023-07-23 17:57:12'), (2114, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:58:12', '2023-07-23 17:58:12'), (2115, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 17:59:12', '2023-07-23 17:59:12'), (2116, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:00:12', '2023-07-23 18:00:12'), (2117, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:01:12', '2023-07-23 18:01:12'), (2118, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:02:12', '2023-07-23 18:02:12'), (2119, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:03:12', '2023-07-23 18:03:12'), (2120, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:04:12', '2023-07-23 18:04:12'), (2121, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:05:12', '2023-07-23 18:05:12'), (2122, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:06:12', '2023-07-23 18:06:12'), (2123, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:07:13', '2023-07-23 18:07:13'), (2124, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:08:12', '2023-07-23 18:08:12'), (2125, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:09:12', '2023-07-23 18:09:12'), (2126, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:10:12', '2023-07-23 18:10:12'), (2127, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:11:12', '2023-07-23 18:11:12'), (2128, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:12:12', '2023-07-23 18:12:12'), (2129, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:13:12', '2023-07-23 18:13:12'), (2130, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:14:12', '2023-07-23 18:14:12'), (2131, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:15:12', '2023-07-23 18:15:12'), (2132, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:16:12', '2023-07-23 18:16:12'), (2133, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:17:12', '2023-07-23 18:17:12'), (2134, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:18:13', '2023-07-23 18:18:13'), (2135, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:19:12', '2023-07-23 18:19:12'), (2136, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:20:12', '2023-07-23 18:20:12'), (2137, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:21:12', '2023-07-23 18:21:12'), (2138, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:22:12', '2023-07-23 18:22:12'), (2139, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:23:12', '2023-07-23 18:23:12'), (2140, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:24:12', '2023-07-23 18:24:12'), (2141, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:25:12', '2023-07-23 18:25:12'), (2142, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:26:12', '2023-07-23 18:26:12'), (2143, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:27:13', '2023-07-23 18:27:13'), (2144, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:28:12', '2023-07-23 18:28:12'), (2145, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:29:12', '2023-07-23 18:29:12'), (2146, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:30:12', '2023-07-23 18:30:12'), (2147, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:31:13', '2023-07-23 18:31:13'), (2148, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:32:12', '2023-07-23 18:32:12'), (2149, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:33:13', '2023-07-23 18:33:13'), (2150, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:34:12', '2023-07-23 18:34:12'), (2151, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:35:12', '2023-07-23 18:35:12'), (2152, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:36:13', '2023-07-23 18:36:13'), (2153, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:37:13', '2023-07-23 18:37:13'), (2154, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:38:13', '2023-07-23 18:38:13'), (2155, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:39:13', '2023-07-23 18:39:13'), (2156, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:40:13', '2023-07-23 18:40:13'), (2157, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:41:13', '2023-07-23 18:41:13'), (2158, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:42:13', '2023-07-23 18:42:13'), (2159, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:43:13', '2023-07-23 18:43:13'), (2160, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:44:13', '2023-07-23 18:44:13'), (2161, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:45:13', '2023-07-23 18:45:13'), (2162, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:46:13', '2023-07-23 18:46:13'), (2163, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:47:13', '2023-07-23 18:47:13'), (2164, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:48:13', '2023-07-23 18:48:13'), (2165, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:49:13', '2023-07-23 18:49:13'), (2166, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:50:13', '2023-07-23 18:50:13'), (2167, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:51:13', '2023-07-23 18:51:13'), (2168, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:52:13', '2023-07-23 18:52:13'), (2169, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:53:13', '2023-07-23 18:53:13'), (2170, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:54:13', '2023-07-23 18:54:13'), (2171, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:55:13', '2023-07-23 18:55:13'), (2172, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:56:13', '2023-07-23 18:56:13'), (2173, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:57:13', '2023-07-23 18:57:13'), (2174, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:58:13', '2023-07-23 18:58:13'), (2175, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 18:59:13', '2023-07-23 18:59:13'), (2176, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:00:13', '2023-07-23 19:00:13'), (2177, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:01:13', '2023-07-23 19:01:13'), (2178, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:02:13', '2023-07-23 19:02:13'), (2179, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:03:13', '2023-07-23 19:03:13'), (2180, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:04:13', '2023-07-23 19:04:13'), (2181, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:05:13', '2023-07-23 19:05:13'), (2182, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:06:13', '2023-07-23 19:06:13'), (2183, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:07:13', '2023-07-23 19:07:13'), (2184, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:08:13', '2023-07-23 19:08:13'), (2185, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:09:13', '2023-07-23 19:09:13'), (2186, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:10:13', '2023-07-23 19:10:13'), (2187, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:11:13', '2023-07-23 19:11:13'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (2188, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:12:13', '2023-07-23 19:12:13'), (2189, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:13:13', '2023-07-23 19:13:13'), (2190, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:14:13', '2023-07-23 19:14:13'), (2191, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:15:13', '2023-07-23 19:15:13'), (2192, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:16:13', '2023-07-23 19:16:13'), (2193, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:17:13', '2023-07-23 19:17:13'), (2194, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:18:13', '2023-07-23 19:18:13'), (2195, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:19:13', '2023-07-23 19:19:13'), (2196, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:20:13', '2023-07-23 19:20:13'), (2197, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:21:13', '2023-07-23 19:21:13'), (2198, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:22:13', '2023-07-23 19:22:13'), (2199, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:23:13', '2023-07-23 19:23:13'), (2200, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:24:13', '2023-07-23 19:24:13'), (2201, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:25:13', '2023-07-23 19:25:13'), (2202, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:26:13', '2023-07-23 19:26:13'), (2203, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:27:13', '2023-07-23 19:27:13'), (2204, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:28:13', '2023-07-23 19:28:13'), (2205, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:29:13', '2023-07-23 19:29:13'), (2206, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:30:13', '2023-07-23 19:30:13'), (2207, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:31:13', '2023-07-23 19:31:13'), (2208, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:32:13', '2023-07-23 19:32:13'), (2209, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:33:13', '2023-07-23 19:33:13'), (2210, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:34:13', '2023-07-23 19:34:13'), (2211, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:35:13', '2023-07-23 19:35:13'), (2212, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:36:13', '2023-07-23 19:36:13'), (2213, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:37:13', '2023-07-23 19:37:13'), (2214, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:38:13', '2023-07-23 19:38:13'), (2215, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:39:13', '2023-07-23 19:39:13'), (2216, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:40:13', '2023-07-23 19:40:13'), (2217, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:41:13', '2023-07-23 19:41:13'), (2218, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:42:13', '2023-07-23 19:42:13'), (2219, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:43:13', '2023-07-23 19:43:13'), (2220, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:44:13', '2023-07-23 19:44:13'), (2221, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:45:13', '2023-07-23 19:45:13'), (2222, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:46:13', '2023-07-23 19:46:13'), (2223, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:47:13', '2023-07-23 19:47:13'), (2224, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:48:13', '2023-07-23 19:48:13'), (2225, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:49:13', '2023-07-23 19:49:13'), (2226, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:50:13', '2023-07-23 19:50:13'), (2227, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:51:13', '2023-07-23 19:51:13'), (2228, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:52:13', '2023-07-23 19:52:13'), (2229, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:53:13', '2023-07-23 19:53:13'), (2230, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:54:13', '2023-07-23 19:54:13'), (2231, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:55:13', '2023-07-23 19:55:13'), (2232, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:56:13', '2023-07-23 19:56:13'), (2233, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:57:13', '2023-07-23 19:57:13'), (2234, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:58:13', '2023-07-23 19:58:13'), (2235, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 19:59:13', '2023-07-23 19:59:13'), (2236, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:00:13', '2023-07-23 20:00:13'), (2237, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:01:13', '2023-07-23 20:01:13'), (2238, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:02:13', '2023-07-23 20:02:13'), (2239, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:03:13', '2023-07-23 20:03:13'), (2240, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:04:13', '2023-07-23 20:04:13'), (2241, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:05:13', '2023-07-23 20:05:13'), (2242, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:06:13', '2023-07-23 20:06:13'), (2243, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:07:13', '2023-07-23 20:07:13'), (2244, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:08:13', '2023-07-23 20:08:13'), (2245, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:09:13', '2023-07-23 20:09:13'), (2246, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:10:13', '2023-07-23 20:10:13'), (2247, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:11:13', '2023-07-23 20:11:13'), (2248, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:12:13', '2023-07-23 20:12:13'), (2249, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:13:13', '2023-07-23 20:13:13'), (2250, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:14:13', '2023-07-23 20:14:13'), (2251, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:15:13', '2023-07-23 20:15:13'), (2252, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:16:13', '2023-07-23 20:16:13'), (2253, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:17:13', '2023-07-23 20:17:13'), (2254, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:18:13', '2023-07-23 20:18:13'), (2255, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:19:13', '2023-07-23 20:19:13'), (2256, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:20:13', '2023-07-23 20:20:13'), (2257, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:21:13', '2023-07-23 20:21:13'), (2258, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:22:13', '2023-07-23 20:22:13'), (2259, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:23:13', '2023-07-23 20:23:13'), (2260, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:24:13', '2023-07-23 20:24:13'), (2261, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:25:13', '2023-07-23 20:25:13'), (2262, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:26:13', '2023-07-23 20:26:13'), (2263, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:27:13', '2023-07-23 20:27:13'), (2264, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:28:13', '2023-07-23 20:28:13'), (2265, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:29:13', '2023-07-23 20:29:13'), (2266, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:30:13', '2023-07-23 20:30:13'), (2267, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:31:13', '2023-07-23 20:31:13'), (2268, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:32:13', '2023-07-23 20:32:13'), (2269, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:33:13', '2023-07-23 20:33:13'), (2270, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:34:13', '2023-07-23 20:34:13'), (2271, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:35:13', '2023-07-23 20:35:13'), (2272, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:36:13', '2023-07-23 20:36:13'), (2273, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:37:13', '2023-07-23 20:37:13'), (2274, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:38:13', '2023-07-23 20:38:13'), (2275, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:39:13', '2023-07-23 20:39:13'), (2276, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:40:13', '2023-07-23 20:40:13'), (2277, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:41:13', '2023-07-23 20:41:13'), (2278, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:42:13', '2023-07-23 20:42:13'), (2279, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:43:13', '2023-07-23 20:43:13'), (2280, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:44:13', '2023-07-23 20:44:13'), (2281, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:45:13', '2023-07-23 20:45:13'), (2282, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:46:13', '2023-07-23 20:46:13'), (2283, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:47:13', '2023-07-23 20:47:13'), (2284, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:48:13', '2023-07-23 20:48:13'), (2285, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:49:13', '2023-07-23 20:49:13'), (2286, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:50:13', '2023-07-23 20:50:13'), (2287, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:51:13', '2023-07-23 20:51:13'), (2288, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:52:13', '2023-07-23 20:52:13'), (2289, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:53:13', '2023-07-23 20:53:13'), (2290, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:54:13', '2023-07-23 20:54:13'), (2291, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:55:13', '2023-07-23 20:55:13'), (2292, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:56:13', '2023-07-23 20:56:13'), (2293, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:57:13', '2023-07-23 20:57:13'), (2294, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:58:13', '2023-07-23 20:58:13'), (2295, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 20:59:13', '2023-07-23 20:59:13'), (2296, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:00:13', '2023-07-23 21:00:13'), (2297, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:01:13', '2023-07-23 21:01:13'), (2298, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:02:13', '2023-07-23 21:02:13'), (2299, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:03:13', '2023-07-23 21:03:13'), (2300, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:04:13', '2023-07-23 21:04:13'), (2301, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:05:13', '2023-07-23 21:05:13'), (2302, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:06:13', '2023-07-23 21:06:13'), (2303, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:07:13', '2023-07-23 21:07:13'), (2304, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:08:13', '2023-07-23 21:08:13'), (2305, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:09:13', '2023-07-23 21:09:13'), (2306, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:10:13', '2023-07-23 21:10:13'), (2307, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:11:13', '2023-07-23 21:11:13'), (2308, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:12:13', '2023-07-23 21:12:13'), (2309, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:13:13', '2023-07-23 21:13:13'), (2310, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:14:13', '2023-07-23 21:14:13'), (2311, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:15:13', '2023-07-23 21:15:13'), (2312, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:16:13', '2023-07-23 21:16:13'), (2313, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:17:13', '2023-07-23 21:17:13'), (2314, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:18:13', '2023-07-23 21:18:13'), (2315, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:19:13', '2023-07-23 21:19:13'), (2316, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:20:13', '2023-07-23 21:20:13'), (2317, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:21:13', '2023-07-23 21:21:13'), (2318, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:22:13', '2023-07-23 21:22:13'), (2319, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:23:13', '2023-07-23 21:23:13'), (2320, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:24:13', '2023-07-23 21:24:13'), (2321, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:25:13', '2023-07-23 21:25:13'), (2322, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:26:13', '2023-07-23 21:26:13'), (2323, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:27:13', '2023-07-23 21:27:13'), (2324, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:28:13', '2023-07-23 21:28:13'), (2325, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:29:13', '2023-07-23 21:29:13'), (2326, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:30:13', '2023-07-23 21:30:13'), (2327, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:31:13', '2023-07-23 21:31:13'), (2328, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:32:13', '2023-07-23 21:32:13'), (2329, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:33:13', '2023-07-23 21:33:13'), (2330, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:34:13', '2023-07-23 21:34:13'), (2331, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:35:13', '2023-07-23 21:35:13'), (2332, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:36:13', '2023-07-23 21:36:13'), (2333, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:37:13', '2023-07-23 21:37:13'), (2334, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:38:13', '2023-07-23 21:38:13'), (2335, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:39:13', '2023-07-23 21:39:13'), (2336, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:40:13', '2023-07-23 21:40:13'), (2337, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:41:13', '2023-07-23 21:41:13'), (2338, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:42:13', '2023-07-23 21:42:13'), (2339, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:43:13', '2023-07-23 21:43:13'), (2340, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:44:13', '2023-07-23 21:44:13'), (2341, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:45:13', '2023-07-23 21:45:13'), (2342, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:46:13', '2023-07-23 21:46:13'), (2343, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:47:14', '2023-07-23 21:47:14'), (2344, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:48:14', '2023-07-23 21:48:14'), (2345, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:49:13', '2023-07-23 21:49:13'), (2346, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:50:14', '2023-07-23 21:50:14'), (2347, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:51:14', '2023-07-23 21:51:14'), (2348, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:52:13', '2023-07-23 21:52:13'), (2349, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:53:14', '2023-07-23 21:53:14'), (2350, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:54:14', '2023-07-23 21:54:14'), (2351, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:55:13', '2023-07-23 21:55:13'), (2352, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:56:13', '2023-07-23 21:56:13'), (2353, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:57:13', '2023-07-23 21:57:13'), (2354, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:58:14', '2023-07-23 21:58:14'), (2355, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 21:59:13', '2023-07-23 21:59:13'), (2356, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:00:13', '2023-07-23 22:00:13'), (2357, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:01:14', '2023-07-23 22:01:14'), (2358, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:02:13', '2023-07-23 22:02:13'), (2359, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:03:13', '2023-07-23 22:03:13'), (2360, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:04:13', '2023-07-23 22:04:13'), (2361, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:05:13', '2023-07-23 22:05:13'), (2362, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:06:13', '2023-07-23 22:06:13'), (2363, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:07:14', '2023-07-23 22:07:14'), (2364, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:08:13', '2023-07-23 22:08:13'), (2365, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:09:13', '2023-07-23 22:09:13'), (2366, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:10:13', '2023-07-23 22:10:13'), (2367, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:11:13', '2023-07-23 22:11:13'), (2368, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:12:13', '2023-07-23 22:12:13'), (2369, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:13:13', '2023-07-23 22:13:13'), (2370, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:14:14', '2023-07-23 22:14:14'), (2371, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:15:13', '2023-07-23 22:15:13'), (2372, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:16:13', '2023-07-23 22:16:13'), (2373, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:17:14', '2023-07-23 22:17:14'), (2374, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:18:14', '2023-07-23 22:18:14'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (2375, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:19:13', '2023-07-23 22:19:13'), (2376, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:20:14', '2023-07-23 22:20:14'), (2377, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:21:14', '2023-07-23 22:21:14'), (2378, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:22:13', '2023-07-23 22:22:13'), (2379, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:23:13', '2023-07-23 22:23:13'), (2380, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:24:13', '2023-07-23 22:24:13'), (2381, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:25:13', '2023-07-23 22:25:13'), (2382, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:26:14', '2023-07-23 22:26:14'), (2383, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:27:13', '2023-07-23 22:27:13'), (2384, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:28:13', '2023-07-23 22:28:13'), (2385, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:29:13', '2023-07-23 22:29:13'), (2386, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:30:13', '2023-07-23 22:30:13'), (2387, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:31:14', '2023-07-23 22:31:14'), (2388, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:32:14', '2023-07-23 22:32:14'), (2389, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:33:14', '2023-07-23 22:33:14'), (2390, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:34:13', '2023-07-23 22:34:13'), (2391, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:35:13', '2023-07-23 22:35:13'), (2392, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:36:13', '2023-07-23 22:36:13'), (2393, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:37:13', '2023-07-23 22:37:13'), (2394, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:38:13', '2023-07-23 22:38:13'), (2395, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:39:13', '2023-07-23 22:39:13'), (2396, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:40:13', '2023-07-23 22:40:13'), (2397, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:41:13', '2023-07-23 22:41:13'), (2398, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:42:13', '2023-07-23 22:42:13'), (2399, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:43:13', '2023-07-23 22:43:13'), (2400, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:44:13', '2023-07-23 22:44:13'), (2401, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:45:13', '2023-07-23 22:45:13'), (2402, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:46:13', '2023-07-23 22:46:13'), (2403, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:47:14', '2023-07-23 22:47:14'), (2404, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:48:13', '2023-07-23 22:48:13'), (2405, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:49:13', '2023-07-23 22:49:13'), (2406, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:50:13', '2023-07-23 22:50:13'), (2407, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:51:13', '2023-07-23 22:51:13'), (2408, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:52:13', '2023-07-23 22:52:13'), (2409, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:53:14', '2023-07-23 22:53:14'), (2410, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:54:14', '2023-07-23 22:54:14'), (2411, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:55:14', '2023-07-23 22:55:14'), (2412, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:56:14', '2023-07-23 22:56:14'), (2413, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:57:14', '2023-07-23 22:57:14'), (2414, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:58:14', '2023-07-23 22:58:14'), (2415, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 22:59:14', '2023-07-23 22:59:14'), (2416, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:00:14', '2023-07-23 23:00:14'), (2417, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:01:14', '2023-07-23 23:01:14'), (2418, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:02:14', '2023-07-23 23:02:14'), (2419, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:03:13', '2023-07-23 23:03:13'), (2420, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:04:13', '2023-07-23 23:04:13'), (2421, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:05:13', '2023-07-23 23:05:13'), (2422, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:06:13', '2023-07-23 23:06:13'), (2423, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:07:14', '2023-07-23 23:07:14'), (2424, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:08:14', '2023-07-23 23:08:14'), (2425, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:09:14', '2023-07-23 23:09:14'), (2426, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:10:14', '2023-07-23 23:10:14'), (2427, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:11:14', '2023-07-23 23:11:14'), (2428, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:12:14', '2023-07-23 23:12:14'), (2429, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:13:14', '2023-07-23 23:13:14'), (2430, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:14:14', '2023-07-23 23:14:14'), (2431, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:15:14', '2023-07-23 23:15:14'), (2432, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:16:14', '2023-07-23 23:16:14'), (2433, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:17:14', '2023-07-23 23:17:14'), (2434, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:18:14', '2023-07-23 23:18:14'), (2435, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:19:14', '2023-07-23 23:19:14'), (2436, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:20:14', '2023-07-23 23:20:14'), (2437, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:21:14', '2023-07-23 23:21:14'), (2438, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:22:14', '2023-07-23 23:22:14'), (2439, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:23:14', '2023-07-23 23:23:14'), (2440, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:24:14', '2023-07-23 23:24:14'), (2441, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:25:14', '2023-07-23 23:25:14'), (2442, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:26:14', '2023-07-23 23:26:14'), (2443, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:27:14', '2023-07-23 23:27:14'), (2444, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:28:14', '2023-07-23 23:28:14'), (2445, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:29:14', '2023-07-23 23:29:14'), (2446, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:30:14', '2023-07-23 23:30:14'), (2447, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:31:14', '2023-07-23 23:31:14'), (2448, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:32:14', '2023-07-23 23:32:14'), (2449, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:33:14', '2023-07-23 23:33:14'), (2450, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:34:14', '2023-07-23 23:34:14'), (2451, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:35:14', '2023-07-23 23:35:14'), (2452, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:36:14', '2023-07-23 23:36:14'), (2453, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:37:14', '2023-07-23 23:37:14'), (2454, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:38:14', '2023-07-23 23:38:14'), (2455, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:39:14', '2023-07-23 23:39:14'), (2456, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:40:14', '2023-07-23 23:40:14'), (2457, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:41:14', '2023-07-23 23:41:14'), (2458, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:42:14', '2023-07-23 23:42:14'), (2459, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:43:14', '2023-07-23 23:43:14'), (2460, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:44:14', '2023-07-23 23:44:14'), (2461, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:45:14', '2023-07-23 23:45:14'), (2462, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:46:14', '2023-07-23 23:46:14'), (2463, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:47:14', '2023-07-23 23:47:14'), (2464, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:48:14', '2023-07-23 23:48:14'), (2465, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:49:14', '2023-07-23 23:49:14'), (2466, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:50:14', '2023-07-23 23:50:14'), (2467, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:51:14', '2023-07-23 23:51:14'), (2468, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:52:14', '2023-07-23 23:52:14'), (2469, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:53:14', '2023-07-23 23:53:14'), (2470, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:54:14', '2023-07-23 23:54:14'), (2471, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:55:14', '2023-07-23 23:55:14'), (2472, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:56:14', '2023-07-23 23:56:14'), (2473, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:57:14', '2023-07-23 23:57:14'), (2474, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:58:14', '2023-07-23 23:58:14'), (2475, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-23 23:59:14', '2023-07-23 23:59:14'), (2476, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:00:14', '2023-07-24 00:00:14'), (2477, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:01:14', '2023-07-24 00:01:14'), (2478, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:02:14', '2023-07-24 00:02:14'), (2479, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:03:14', '2023-07-24 00:03:14'), (2480, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:04:14', '2023-07-24 00:04:14'), (2481, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:05:14', '2023-07-24 00:05:14'), (2482, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:06:14', '2023-07-24 00:06:14'), (2483, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:07:14', '2023-07-24 00:07:14'), (2484, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:08:14', '2023-07-24 00:08:14'), (2485, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:09:14', '2023-07-24 00:09:14'), (2486, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:10:14', '2023-07-24 00:10:14'), (2487, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:11:14', '2023-07-24 00:11:14'), (2488, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:12:14', '2023-07-24 00:12:14'), (2489, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:13:14', '2023-07-24 00:13:14'), (2490, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:14:14', '2023-07-24 00:14:14'), (2491, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:15:14', '2023-07-24 00:15:14'), (2492, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:16:14', '2023-07-24 00:16:14'), (2493, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:17:14', '2023-07-24 00:17:14'), (2494, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:18:14', '2023-07-24 00:18:14'), (2495, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:19:14', '2023-07-24 00:19:14'), (2496, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:20:14', '2023-07-24 00:20:14'), (2497, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:21:14', '2023-07-24 00:21:14'), (2498, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:22:14', '2023-07-24 00:22:14'), (2499, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:23:14', '2023-07-24 00:23:14'), (2500, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:24:14', '2023-07-24 00:24:14'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (2501, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:25:14', '2023-07-24 00:25:14'), (2502, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:26:14', '2023-07-24 00:26:14'), (2503, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:27:14', '2023-07-24 00:27:14'), (2504, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:28:14', '2023-07-24 00:28:14'), (2505, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:29:14', '2023-07-24 00:29:14'), (2506, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:30:14', '2023-07-24 00:30:14'), (2507, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:31:14', '2023-07-24 00:31:14'), (2508, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:32:14', '2023-07-24 00:32:14'), (2509, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:33:14', '2023-07-24 00:33:14'), (2510, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:34:14', '2023-07-24 00:34:14'), (2511, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:35:14', '2023-07-24 00:35:14'), (2512, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:36:14', '2023-07-24 00:36:14'), (2513, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:37:14', '2023-07-24 00:37:14'), (2514, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:38:14', '2023-07-24 00:38:14'), (2515, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:39:14', '2023-07-24 00:39:14'), (2516, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:40:14', '2023-07-24 00:40:14'), (2517, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:41:14', '2023-07-24 00:41:14'), (2518, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:42:14', '2023-07-24 00:42:14'), (2519, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:43:15', '2023-07-24 00:43:15'), (2520, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:44:14', '2023-07-24 00:44:14'), (2521, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:45:14', '2023-07-24 00:45:14'), (2522, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:46:14', '2023-07-24 00:46:14'), (2523, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:47:14', '2023-07-24 00:47:14'), (2524, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:48:14', '2023-07-24 00:48:14'), (2525, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:49:14', '2023-07-24 00:49:14'), (2526, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:50:14', '2023-07-24 00:50:14'), (2527, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:51:14', '2023-07-24 00:51:14'), (2528, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:52:14', '2023-07-24 00:52:14'), (2529, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:53:14', '2023-07-24 00:53:14'), (2530, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:54:14', '2023-07-24 00:54:14'), (2531, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:55:14', '2023-07-24 00:55:14'), (2532, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:56:14', '2023-07-24 00:56:14'), (2533, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:57:14', '2023-07-24 00:57:14'), (2534, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:58:14', '2023-07-24 00:58:14'), (2535, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 00:59:14', '2023-07-24 00:59:14'), (2536, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:00:14', '2023-07-24 01:00:14'), (2537, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:01:14', '2023-07-24 01:01:14'), (2538, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:02:14', '2023-07-24 01:02:14'), (2539, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:03:14', '2023-07-24 01:03:14'), (2540, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:04:14', '2023-07-24 01:04:14'), (2541, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:05:14', '2023-07-24 01:05:14'), (2542, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:06:14', '2023-07-24 01:06:14'), (2543, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:07:14', '2023-07-24 01:07:14'), (2544, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:08:14', '2023-07-24 01:08:14'), (2545, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:09:14', '2023-07-24 01:09:14'), (2546, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:10:14', '2023-07-24 01:10:14'), (2547, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:11:14', '2023-07-24 01:11:14'), (2548, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:12:14', '2023-07-24 01:12:14'), (2549, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:13:14', '2023-07-24 01:13:14'), (2550, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:14:14', '2023-07-24 01:14:14'), (2551, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:15:14', '2023-07-24 01:15:14'), (2552, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:16:14', '2023-07-24 01:16:14'), (2553, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:17:14', '2023-07-24 01:17:14'), (2554, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:18:14', '2023-07-24 01:18:14'), (2555, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:19:14', '2023-07-24 01:19:14'), (2556, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:20:14', '2023-07-24 01:20:14'), (2557, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:21:14', '2023-07-24 01:21:14'), (2558, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:22:14', '2023-07-24 01:22:14'), (2559, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:23:14', '2023-07-24 01:23:14'), (2560, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:24:14', '2023-07-24 01:24:14'), (2561, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:25:14', '2023-07-24 01:25:14'), (2562, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:26:14', '2023-07-24 01:26:14'), (2563, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:27:14', '2023-07-24 01:27:14'), (2564, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:28:14', '2023-07-24 01:28:14'), (2565, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:29:14', '2023-07-24 01:29:14'), (2566, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:30:14', '2023-07-24 01:30:14'), (2567, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:31:15', '2023-07-24 01:31:15'), (2568, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:32:14', '2023-07-24 01:32:14'), (2569, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:33:14', '2023-07-24 01:33:14'), (2570, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:34:14', '2023-07-24 01:34:14'), (2571, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:35:14', '2023-07-24 01:35:14'), (2572, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:36:14', '2023-07-24 01:36:14'), (2573, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:37:14', '2023-07-24 01:37:14'), (2574, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:38:14', '2023-07-24 01:38:14'), (2575, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:39:14', '2023-07-24 01:39:14'), (2576, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:40:14', '2023-07-24 01:40:14'), (2577, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:41:14', '2023-07-24 01:41:14'), (2578, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:42:14', '2023-07-24 01:42:14'), (2579, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:43:14', '2023-07-24 01:43:14'), (2580, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:44:14', '2023-07-24 01:44:14'), (2581, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:45:14', '2023-07-24 01:45:14'), (2582, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:46:14', '2023-07-24 01:46:14'), (2583, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:47:15', '2023-07-24 01:47:15'), (2584, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:48:14', '2023-07-24 01:48:14'), (2585, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:49:14', '2023-07-24 01:49:14'), (2586, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:50:14', '2023-07-24 01:50:14'), (2587, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:51:14', '2023-07-24 01:51:14'), (2588, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:52:14', '2023-07-24 01:52:14'), (2589, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:53:15', '2023-07-24 01:53:15'), (2590, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:54:14', '2023-07-24 01:54:14'), (2591, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:55:14', '2023-07-24 01:55:14'), (2592, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:56:15', '2023-07-24 01:56:15'), (2593, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:57:14', '2023-07-24 01:57:14'), (2594, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:58:15', '2023-07-24 01:58:15'), (2595, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 01:59:14', '2023-07-24 01:59:14'), (2596, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:00:14', '2023-07-24 02:00:14'), (2597, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:01:14', '2023-07-24 02:01:14'), (2598, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:02:14', '2023-07-24 02:02:14'), (2599, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:03:14', '2023-07-24 02:03:14'), (2600, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:04:14', '2023-07-24 02:04:14'), (2601, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:05:14', '2023-07-24 02:05:14'), (2602, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:06:14', '2023-07-24 02:06:14'), (2603, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:07:14', '2023-07-24 02:07:14'), (2604, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:08:14', '2023-07-24 02:08:14'), (2605, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:09:14', '2023-07-24 02:09:14'), (2606, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:10:14', '2023-07-24 02:10:14'), (2607, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:11:14', '2023-07-24 02:11:14'), (2608, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:12:14', '2023-07-24 02:12:14'), (2609, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:13:14', '2023-07-24 02:13:14'), (2610, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:14:14', '2023-07-24 02:14:14'), (2611, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:15:14', '2023-07-24 02:15:14'), (2612, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:16:14', '2023-07-24 02:16:14'), (2613, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:17:14', '2023-07-24 02:17:14'), (2614, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:18:14', '2023-07-24 02:18:14'), (2615, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:19:15', '2023-07-24 02:19:15'), (2616, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:20:14', '2023-07-24 02:20:14'), (2617, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:21:14', '2023-07-24 02:21:14'), (2618, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:22:14', '2023-07-24 02:22:14'), (2619, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:23:14', '2023-07-24 02:23:14'), (2620, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:24:14', '2023-07-24 02:24:14'), (2621, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:25:14', '2023-07-24 02:25:14'), (2622, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:26:14', '2023-07-24 02:26:14'), (2623, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:27:14', '2023-07-24 02:27:14'), (2624, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:28:14', '2023-07-24 02:28:14'), (2625, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:29:14', '2023-07-24 02:29:14'), (2626, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:30:14', '2023-07-24 02:30:14'), (2627, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:31:14', '2023-07-24 02:31:14'), (2628, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:32:14', '2023-07-24 02:32:14'), (2629, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:33:14', '2023-07-24 02:33:14'), (2630, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:34:14', '2023-07-24 02:34:14'), (2631, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:35:14', '2023-07-24 02:35:14'), (2632, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:36:14', '2023-07-24 02:36:14'), (2633, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:37:14', '2023-07-24 02:37:14'), (2634, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:38:14', '2023-07-24 02:38:14'), (2635, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:39:14', '2023-07-24 02:39:14'), (2636, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:40:14', '2023-07-24 02:40:14'), (2637, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:41:14', '2023-07-24 02:41:14'), (2638, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:42:14', '2023-07-24 02:42:14'), (2639, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:43:14', '2023-07-24 02:43:14'), (2640, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:44:14', '2023-07-24 02:44:14'), (2641, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:45:14', '2023-07-24 02:45:14'), (2642, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:46:15', '2023-07-24 02:46:15'), (2643, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:47:15', '2023-07-24 02:47:15'), (2644, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:48:15', '2023-07-24 02:48:15'), (2645, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:49:15', '2023-07-24 02:49:15'), (2646, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:50:15', '2023-07-24 02:50:15'), (2647, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:51:15', '2023-07-24 02:51:15'), (2648, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:52:15', '2023-07-24 02:52:15'), (2649, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:53:15', '2023-07-24 02:53:15'), (2650, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:54:15', '2023-07-24 02:54:15'), (2651, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:55:15', '2023-07-24 02:55:15'), (2652, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:56:15', '2023-07-24 02:56:15'), (2653, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:57:15', '2023-07-24 02:57:15'), (2654, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:58:15', '2023-07-24 02:58:15'), (2655, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 02:59:15', '2023-07-24 02:59:15'), (2656, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:00:15', '2023-07-24 03:00:15'), (2657, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:01:15', '2023-07-24 03:01:15'), (2658, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:02:15', '2023-07-24 03:02:15'), (2659, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:03:15', '2023-07-24 03:03:15'), (2660, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:04:15', '2023-07-24 03:04:15'), (2661, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:05:15', '2023-07-24 03:05:15'), (2662, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:06:15', '2023-07-24 03:06:15'), (2663, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:07:15', '2023-07-24 03:07:15'), (2664, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:08:15', '2023-07-24 03:08:15'), (2665, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:09:15', '2023-07-24 03:09:15'), (2666, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:10:15', '2023-07-24 03:10:15'), (2667, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:11:15', '2023-07-24 03:11:15'), (2668, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:12:15', '2023-07-24 03:12:15'), (2669, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:13:15', '2023-07-24 03:13:15'), (2670, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:14:15', '2023-07-24 03:14:15'), (2671, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:15:15', '2023-07-24 03:15:15'), (2672, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:16:15', '2023-07-24 03:16:15'), (2673, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:17:15', '2023-07-24 03:17:15'), (2674, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:18:15', '2023-07-24 03:18:15'), (2675, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:19:15', '2023-07-24 03:19:15'), (2676, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:20:15', '2023-07-24 03:20:15'), (2677, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:21:15', '2023-07-24 03:21:15'), (2678, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:22:15', '2023-07-24 03:22:15'), (2679, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:23:15', '2023-07-24 03:23:15'), (2680, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:24:15', '2023-07-24 03:24:15'), (2681, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:25:15', '2023-07-24 03:25:15'), (2682, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:26:15', '2023-07-24 03:26:15'), (2683, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:27:15', '2023-07-24 03:27:15'), (2684, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:28:15', '2023-07-24 03:28:15'), (2685, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:29:15', '2023-07-24 03:29:15'), (2686, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:30:15', '2023-07-24 03:30:15'), (2687, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:31:15', '2023-07-24 03:31:15'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (2688, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:32:15', '2023-07-24 03:32:15'), (2689, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:33:15', '2023-07-24 03:33:15'), (2690, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:34:15', '2023-07-24 03:34:15'), (2691, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:35:15', '2023-07-24 03:35:15'), (2692, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:36:15', '2023-07-24 03:36:15'), (2693, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:37:15', '2023-07-24 03:37:15'), (2694, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:38:15', '2023-07-24 03:38:15'), (2695, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:39:15', '2023-07-24 03:39:15'), (2696, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:40:15', '2023-07-24 03:40:15'), (2697, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:41:15', '2023-07-24 03:41:15'), (2698, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:42:15', '2023-07-24 03:42:15'), (2699, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:43:15', '2023-07-24 03:43:15'), (2700, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:44:15', '2023-07-24 03:44:15'), (2701, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:45:15', '2023-07-24 03:45:15'), (2702, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:46:15', '2023-07-24 03:46:15'), (2703, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:47:15', '2023-07-24 03:47:15'), (2704, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:48:15', '2023-07-24 03:48:15'), (2705, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:49:15', '2023-07-24 03:49:15'), (2706, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:50:15', '2023-07-24 03:50:15'), (2707, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:51:15', '2023-07-24 03:51:15'), (2708, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:52:15', '2023-07-24 03:52:15'), (2709, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:53:15', '2023-07-24 03:53:15'), (2710, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:54:15', '2023-07-24 03:54:15'), (2711, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:55:15', '2023-07-24 03:55:15'), (2712, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:56:15', '2023-07-24 03:56:15'), (2713, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:57:15', '2023-07-24 03:57:15'), (2714, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:58:15', '2023-07-24 03:58:15'), (2715, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 03:59:15', '2023-07-24 03:59:15'), (2716, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:00:15', '2023-07-24 04:00:15'), (2717, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:01:15', '2023-07-24 04:01:15'), (2718, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:02:15', '2023-07-24 04:02:15'), (2719, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:03:15', '2023-07-24 04:03:15'), (2720, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:04:15', '2023-07-24 04:04:15'), (2721, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:05:15', '2023-07-24 04:05:15'), (2722, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:06:15', '2023-07-24 04:06:15'), (2723, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:07:15', '2023-07-24 04:07:15'), (2724, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:08:15', '2023-07-24 04:08:15'), (2725, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:09:15', '2023-07-24 04:09:15'), (2726, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:10:15', '2023-07-24 04:10:15'), (2727, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:11:15', '2023-07-24 04:11:15'), (2728, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:12:15', '2023-07-24 04:12:15'), (2729, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:13:15', '2023-07-24 04:13:15'), (2730, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:14:15', '2023-07-24 04:14:15'), (2731, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:15:15', '2023-07-24 04:15:15'), (2732, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:16:15', '2023-07-24 04:16:15'), (2733, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:17:15', '2023-07-24 04:17:15'), (2734, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:18:15', '2023-07-24 04:18:15'), (2735, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:19:15', '2023-07-24 04:19:15'), (2736, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:20:15', '2023-07-24 04:20:15'), (2737, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:21:15', '2023-07-24 04:21:15'), (2738, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:22:15', '2023-07-24 04:22:15'), (2739, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:23:15', '2023-07-24 04:23:15'), (2740, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:24:15', '2023-07-24 04:24:15'), (2741, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:25:15', '2023-07-24 04:25:15'), (2742, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:26:15', '2023-07-24 04:26:15'), (2743, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:27:15', '2023-07-24 04:27:15'), (2744, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:28:15', '2023-07-24 04:28:15'), (2745, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:29:15', '2023-07-24 04:29:15'), (2746, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:30:15', '2023-07-24 04:30:15'), (2747, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:31:15', '2023-07-24 04:31:15'), (2748, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:32:15', '2023-07-24 04:32:15'), (2749, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:33:15', '2023-07-24 04:33:15'), (2750, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:34:15', '2023-07-24 04:34:15'), (2751, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:35:15', '2023-07-24 04:35:15'), (2752, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:36:15', '2023-07-24 04:36:15'), (2753, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:37:15', '2023-07-24 04:37:15'), (2754, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): October\\Rain\\Foundation\\Application->make(\'redirect\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(646): app(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/controllers/updates.php(884): redirect()\n#9 [internal function]: System\\Controllers\\Updates->onBulkAction()\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(628): call_user_func_array(Array, Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onBulkAction\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'manage\', Array)\n#14 /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#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#16 /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#17 /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#18 /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#19 /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#20 /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#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#49 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#50 {main}', '[]', '2023-07-24 04:37:36', '2023-07-24 04:37:36'), (2755, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(134): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#49 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#50 {main}', '[]', '2023-07-24 04:37:36', '2023-07-24 04:37:36'), (2756, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#47 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#48 {main}', '[]', '2023-07-24 04:37:36', '2023-07-24 04:37:36'), (2757, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#45 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#46 {main}', '[]', '2023-07-24 04:37:36', '2023-07-24 04:37:36'), (2758, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#43 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#44 {main}', '[]', '2023-07-24 04:37:36', '2023-07-24 04:37:36'), (2759, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#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/Foundation/Http/Kernel.php(145): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#39 /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#40 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#41 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#42 {main}', '[]', '2023-07-24 04:37:36', '2023-07-24 04:37:36'), (2760, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#39 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#40 {main}', '[]', '2023-07-24 04:37:36', '2023-07-24 04:37:36'), (2761, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#37 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#38 {main}', '[]', '2023-07-24 04:37:36', '2023-07-24 04:37:36'), (2762, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(134): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#31 {main}', '[]', '2023-07-24 04:37:36', '2023-07-24 04:37:36'), (2763, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#28 {main}', '[]', '2023-07-24 04:37:36', '2023-07-24 04:37:36'), (2764, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#26 {main}', '[]', '2023-07-24 04:37:36', '2023-07-24 04:37:36'), (2765, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(420): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(118): Illuminate\\Foundation\\Http\\Kernel->renderException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#23 {main}', '[]', '2023-07-24 04:37:36', '2023-07-24 04:37:36'), (2766, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Error: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Co in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:37:36', '2023-07-24 04:37:36'), (2767, 'error', 'October\\Rain\\Exception\\SystemException: Class name is not registered for the component \"account\". Check the component plugin. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/ComponentManager.php:204\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(1431): Cms\\Classes\\ComponentManager->makeComponent(\'account\', Object(Cms64be0017e6d84391293565_98ee36e26d77833e57c8c4f35ce82dbbClass), Array, false)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(653): Cms\\Classes\\Controller->addComponent(\'account\', \'account\', Array, true)\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(334): Cms\\Classes\\Controller->initComponents()\n#3 /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#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(135): Cms\\Classes\\Controller->run(\'rainlab/user/us...\')\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(180): Backend\\Classes\\BackendController->passToCmsController(\'rainlab/user/us...\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'rainlab/user/us...\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): 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/ControllerDispatcher.php(45): Backend\\Classes\\BackendController->callAction(\'run\', Array)\n#9 /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#10 /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#11 /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#12 /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#13 /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#14 /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#15 /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#16 /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#17 /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#18 /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#19 /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#20 /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#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#43 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#44 {main}', '[]', '2023-07-24 04:37:43', '2023-07-24 04:37:43'), (2768, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:38:15', '2023-07-24 04:38:15'), (2769, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:39:15', '2023-07-24 04:39:15'), (2770, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:40:15', '2023-07-24 04:40:15'), (2771, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:41:15', '2023-07-24 04:41:15'), (2772, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:42:15', '2023-07-24 04:42:15'), (2773, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:43:15', '2023-07-24 04:43:15'), (2774, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:44:15', '2023-07-24 04:44:15'), (2775, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:45:15', '2023-07-24 04:45:15'), (2776, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:46:15', '2023-07-24 04:46:15'), (2777, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:47:15', '2023-07-24 04:47:15'), (2778, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:48:15', '2023-07-24 04:48:15'), (2779, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:49:15', '2023-07-24 04:49:15'), (2780, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:50:15', '2023-07-24 04:50:15'), (2781, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:51:15', '2023-07-24 04:51:15'), (2782, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:52:15', '2023-07-24 04:52:15'), (2783, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:53:15', '2023-07-24 04:53:15'), (2784, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:54:15', '2023-07-24 04:54:15'), (2785, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:55:15', '2023-07-24 04:55:15'), (2786, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:56:15', '2023-07-24 04:56:15'), (2787, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:57:15', '2023-07-24 04:57:15'), (2788, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:58:15', '2023-07-24 04:58:15'), (2789, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 04:59:15', '2023-07-24 04:59:15'), (2790, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:00:15', '2023-07-24 05:00:15'), (2791, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:01:15', '2023-07-24 05:01:15'), (2792, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:02:15', '2023-07-24 05:02:15'), (2793, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:03:15', '2023-07-24 05:03:15'), (2794, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:04:15', '2023-07-24 05:04:15'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (2795, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:05:15', '2023-07-24 05:05:15'), (2796, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:06:15', '2023-07-24 05:06:15'), (2797, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:07:15', '2023-07-24 05:07:15'), (2798, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:08:15', '2023-07-24 05:08:15'), (2799, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:09:15', '2023-07-24 05:09:15'), (2800, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:10:15', '2023-07-24 05:10:15'), (2801, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:11:15', '2023-07-24 05:11:15'), (2802, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:12:15', '2023-07-24 05:12:15'), (2803, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:13:15', '2023-07-24 05:13:15'), (2804, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:14:15', '2023-07-24 05:14:15'), (2805, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:15:15', '2023-07-24 05:15:15'), (2806, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:16:15', '2023-07-24 05:16:15'), (2807, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:17:15', '2023-07-24 05:17:15'), (2808, 'error', 'Symfony\\Component\\Console\\Exception\\RuntimeException: Too many arguments, expected arguments \"command\". in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Input/ArgvInput.php:172\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Input/ArgvInput.php(83): Symfony\\Component\\Console\\Input\\ArgvInput->parseArgument(\'Rainlab.User\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Input/Input.php(55): Symfony\\Component\\Console\\Input\\ArgvInput->parse()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(214): Symfony\\Component\\Console\\Input\\Input->bind(Object(Symfony\\Component\\Console\\Input\\InputDefinition))\n#3 /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#4 /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#5 /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#6 /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#7 /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#8 /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#9 /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#10 {main}', '[]', '2023-07-24 05:17:56', '2023-07-24 05:17:56'), (2809, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:18:15', '2023-07-24 05:18:15'), (2810, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:19:15', '2023-07-24 05:19:15'), (2811, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:20:15', '2023-07-24 05:20:15'), (2812, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:21:15', '2023-07-24 05:21:15'), (2813, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:22:15', '2023-07-24 05:22:15'), (2814, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:23:15', '2023-07-24 05:23:15'), (2815, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:24:15', '2023-07-24 05:24:15'), (2816, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:25:15', '2023-07-24 05:25:15'), (2817, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:26:15', '2023-07-24 05:26:15'), (2818, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:27:15', '2023-07-24 05:27:15'), (2819, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:28:15', '2023-07-24 05:28:15'), (2820, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:29:15', '2023-07-24 05:29:15'), (2821, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:30:15', '2023-07-24 05:30:15'), (2822, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:31:15', '2023-07-24 05:31:15'), (2823, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:32:15', '2023-07-24 05:32:15'), (2824, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:33:15', '2023-07-24 05:33:15'), (2825, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:34:15', '2023-07-24 05:34:15'), (2826, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:35:15', '2023-07-24 05:35:15'), (2827, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:36:15', '2023-07-24 05:36:15'), (2828, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:37:15', '2023-07-24 05:37:15'), (2829, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:38:15', '2023-07-24 05:38:15'), (2830, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:39:15', '2023-07-24 05:39:15'), (2831, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:40:15', '2023-07-24 05:40:15'), (2832, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:41:15', '2023-07-24 05:41:15'), (2833, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:42:15', '2023-07-24 05:42:15'), (2834, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:43:15', '2023-07-24 05:43:15'), (2835, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:44:15', '2023-07-24 05:44:15'), (2836, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:45:15', '2023-07-24 05:45:15'), (2837, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:46:15', '2023-07-24 05:46:15'), (2838, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:47:15', '2023-07-24 05:47:15'), (2839, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:48:15', '2023-07-24 05:48:15'), (2840, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:49:15', '2023-07-24 05:49:15'), (2841, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:50:15', '2023-07-24 05:50:15'), (2842, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:51:15', '2023-07-24 05:51:15'), (2843, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:52:15', '2023-07-24 05:52:15'), (2844, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:53:15', '2023-07-24 05:53:15'), (2845, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:54:15', '2023-07-24 05:54:15'), (2846, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:55:15', '2023-07-24 05:55:15'), (2847, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:56:15', '2023-07-24 05:56:15'), (2848, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:57:15', '2023-07-24 05:57:15'), (2849, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:58:15', '2023-07-24 05:58:15'), (2850, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 05:59:15', '2023-07-24 05:59:15'), (2851, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:00:15', '2023-07-24 06:00:15'), (2852, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:01:15', '2023-07-24 06:01:15'), (2853, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:02:15', '2023-07-24 06:02:15'), (2854, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:03:15', '2023-07-24 06:03:15'), (2855, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:04:15', '2023-07-24 06:04:15'), (2856, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:05:15', '2023-07-24 06:05:15'), (2857, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:06:15', '2023-07-24 06:06:15'), (2858, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:07:15', '2023-07-24 06:07:15'), (2859, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:08:15', '2023-07-24 06:08:15'), (2860, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:09:15', '2023-07-24 06:09:15'), (2861, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:10:15', '2023-07-24 06:10:15'), (2862, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:11:15', '2023-07-24 06:11:15'), (2863, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:12:15', '2023-07-24 06:12:15'), (2864, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:13:15', '2023-07-24 06:13:15'), (2865, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:14:15', '2023-07-24 06:14:15'), (2866, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:15:15', '2023-07-24 06:15:15'), (2867, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:16:15', '2023-07-24 06:16:15'), (2868, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:17:15', '2023-07-24 06:17:15'), (2869, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:18:15', '2023-07-24 06:18:15'), (2870, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:19:15', '2023-07-24 06:19:15'), (2871, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:20:15', '2023-07-24 06:20:15'), (2872, 'error', 'PDOException: SQLSTATE[42000]: Syntax error or access violation: 1091 Can\'t DROP \'mobile\'; check that column/key exists 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 `us...\', 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 `us...\', 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 `us...\', 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 `us...\')\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(\'users\', Object(Closure))\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/userplus/updates/user_add_mobile_field.php(25): 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): RainLab\\UserPlus\\Updates\\UserAddMobileField->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(\'RainLab.UserPlu...\', \'1.0.3\', \'user_add_mobile...\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(579): System\\Classes\\VersionManager->removePlugin(Object(RainLab\\UserPlus\\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(\'RainLab.UserPlu...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/controllers/updates.php(873): System\\Classes\\PluginManager->deletePlugin(\'RainLab.UserPlu...\')\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[42000]: Syntax error or access violation: 1091 Can\'t DROP \'mobile\'; check that column/key exists 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 `us...\', 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 `us...\', 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 `us...\', 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 `us...\')\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(\'users\', Object(Closure))\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/userplus/updates/user_add_mobile_field.php(25): 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): RainLab\\UserPlus\\Updates\\UserAddMobileField->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(\'RainLab.UserPlu...\', \'1.0.3\', \'user_add_mobile...\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(579): System\\Classes\\VersionManager->removePlugin(Object(RainLab\\UserPlus\\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(\'RainLab.UserPlu...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/controllers/updates.php(873): System\\Classes\\PluginManager->deletePlugin(\'RainLab.UserPlu...\')\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[42000]: Syntax error or access violation: 1091 Can\'t DROP \'mobile\'; check that column/key exists (SQL: alter table `users` drop `mobile`) 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 `us...\', 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 `us...\', 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 `us...\')\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(\'users\', Object(Closure))\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/userplus/updates/user_add_mobile_field.php(25): 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): RainLab\\UserPlus\\Updates\\UserAddMobileField->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(\'RainLab.UserPlu...\', \'1.0.3\', \'user_add_mobile...\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(579): System\\Classes\\VersionManager->removePlugin(Object(RainLab\\UserPlus\\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(\'RainLab.UserPlu...\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/controllers/updates.php(873): System\\Classes\\PluginManager->deletePlugin(\'RainLab.UserPlu...\')\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-07-24 06:20:42', '2023-07-24 06:20:42'), (2873, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): October\\Rain\\Foundation\\Application->make(\'redirect\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(646): app(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/controllers/updates.php(884): redirect()\n#9 [internal function]: System\\Controllers\\Updates->onBulkAction()\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(628): call_user_func_array(Array, Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onBulkAction\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'manage\', Array)\n#14 /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#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#16 /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#17 /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#18 /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#19 /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#20 /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#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#49 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#50 {main}', '[]', '2023-07-24 06:20:58', '2023-07-24 06:20:58'), (2874, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(134): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#49 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#50 {main}', '[]', '2023-07-24 06:20:58', '2023-07-24 06:20:58'), (2875, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#47 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#48 {main}', '[]', '2023-07-24 06:20:58', '2023-07-24 06:20:58'), (2876, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#45 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#46 {main}', '[]', '2023-07-24 06:20:58', '2023-07-24 06:20:58'), (2877, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#43 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#44 {main}', '[]', '2023-07-24 06:20:58', '2023-07-24 06:20:58'), (2878, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#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/Foundation/Http/Kernel.php(145): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#39 /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#40 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#41 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#42 {main}', '[]', '2023-07-24 06:20:58', '2023-07-24 06:20:58'), (2879, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#39 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#40 {main}', '[]', '2023-07-24 06:20:58', '2023-07-24 06:20:58'), (2880, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#37 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#38 {main}', '[]', '2023-07-24 06:20:58', '2023-07-24 06:20:58'), (2881, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(134): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#31 {main}', '[]', '2023-07-24 06:20:58', '2023-07-24 06:20:58'), (2882, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /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#25 /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#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#28 {main}', '[]', '2023-07-24 06:20:58', '2023-07-24 06:20:58'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (2883, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(178): Illuminate\\Routing\\Pipeline->handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /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#22 /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#23 /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#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#26 {main}', '[]', '2023-07-24 06:20:58', '2023-07-24 06:20:58'), (2884, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'redirect\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'redirect\', Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'redirect\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'redirect\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php(179): Illuminate\\Container\\Container->offsetGet(\'redirect\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\\Routing\\RoutingServiceProvider->Illuminate\\Routing\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\\Foundation\\Application->resolve(\'Illuminate\\\\Cont...\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(770): Illuminate\\Container\\Container->make(\'Illuminate\\\\Cont...\', Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(293): Illuminate\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): October\\Rain\\Foundation\\Application->make(\'Illuminate\\\\Cont...\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(198): Illuminate\\Container\\Container->offsetGet(\'Illuminate\\\\Cont...\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(166): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance(\'Illuminate\\\\Cont...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(255): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Exception/Handler.php(113): Illuminate\\Support\\Facades\\Facade::__callStatic(\'make\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(420): October\\Rain\\Foundation\\Exception\\Handler->render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(118): Illuminate\\Foundation\\Http\\Kernel->renderException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\Debug\\Exception\\FatalThrowableError))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#23 {main}', '[]', '2023-07-24 06:20:58', '2023-07-24 06:20:58'), (2885, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Error: Class \'RainLab\\User\\Classes\\UserRedirector\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): RainLab\\User\\Plugin->RainLab\\User\\{closure}(Object(October\\Rain\\Foundation\\Application), Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'redirect\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Co in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/user/Plugin.php:45\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:20:58', '2023-07-24 06:20:58'), (2886, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Models\\User\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/userplus/Plugin.php:53\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/userplus/Plugin.php(38): RainLab\\UserPlus\\Plugin->extendUserModel()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): RainLab\\UserPlus\\Plugin->boot()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(RainLab\\UserPlus\\Plugin))\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#5 /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#6 /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#7 /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#8 /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#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#11 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 21)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(320): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Foundation\\Console\\Kernel->bootstrap()\n#17 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#18 {main}', '[]', '2023-07-24 06:21:15', '2023-07-24 06:21:15'), (2887, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\User\\Models\\User\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/userplus/Plugin.php:53\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/userplus/Plugin.php(38): RainLab\\UserPlus\\Plugin->extendUserModel()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): RainLab\\UserPlus\\Plugin->boot()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(RainLab\\UserPlus\\Plugin))\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#5 /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#6 /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#7 /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#8 /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#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#11 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 21)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(320): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Foundation\\Console\\Kernel->bootstrap()\n#17 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#18 {main}', '[]', '2023-07-24 06:21:15', '2023-07-24 06:21:15'), (2888, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:21:15', '2023-07-24 06:21:15'), (2889, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 21)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(320): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Foundation\\Console\\Kernel->bootstrap()\n#16 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#17 {main}', '[]', '2023-07-24 06:22:08', '2023-07-24 06:22:08'), (2890, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 21)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(320): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Foundation\\Console\\Kernel->bootstrap()\n#16 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#17 {main}', '[]', '2023-07-24 06:22:15', '2023-07-24 06:22:15'), (2891, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 21)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(320): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Foundation\\Console\\Kernel->bootstrap()\n#16 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#17 {main}', '[]', '2023-07-24 06:22:15', '2023-07-24 06:22:15'), (2892, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:22:15', '2023-07-24 06:22:15'), (2893, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 21)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(320): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Foundation\\Console\\Kernel->bootstrap()\n#16 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#17 {main}', '[]', '2023-07-24 06:23:16', '2023-07-24 06:23:16'), (2894, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 21)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(320): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Foundation\\Console\\Kernel->bootstrap()\n#16 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#17 {main}', '[]', '2023-07-24 06:23:16', '2023-07-24 06:23:16'), (2895, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:23:16', '2023-07-24 06:23:16'), (2896, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 21)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(320): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Foundation\\Console\\Kernel->bootstrap()\n#16 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#17 {main}', '[]', '2023-07-24 06:23:58', '2023-07-24 06:23:58'), (2897, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 21)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(320): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Foundation\\Console\\Kernel->bootstrap()\n#16 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#17 {main}', '[]', '2023-07-24 06:23:58', '2023-07-24 06:23:58'), (2898, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 21)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(320): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Foundation\\Console\\Kernel->bootstrap()\n#16 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#17 {main}', '[]', '2023-07-24 06:23:58', '2023-07-24 06:23:58'), (2899, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 21)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(320): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Foundation\\Console\\Kernel->bootstrap()\n#16 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#17 {main}', '[]', '2023-07-24 06:23:58', '2023-07-24 06:23:58'), (2900, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 21)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(320): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Foundation\\Console\\Kernel->bootstrap()\n#16 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#17 {main}', '[]', '2023-07-24 06:24:15', '2023-07-24 06:24:15'), (2901, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 21)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(320): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Foundation\\Console\\Kernel->bootstrap()\n#16 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#17 {main}', '[]', '2023-07-24 06:24:15', '2023-07-24 06:24:15'), (2902, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:24:15', '2023-07-24 06:24:15'), (2903, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 20)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(156): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Foundation\\Http\\Kernel->bootstrap()\n#16 /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#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#19 {main}', '[]', '2023-07-24 06:24:31', '2023-07-24 06:24:31'), (2904, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 20)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(156): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Foundation\\Http\\Kernel->bootstrap()\n#16 /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#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#19 {main}', '[]', '2023-07-24 06:24:35', '2023-07-24 06:24:35'), (2905, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 20)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(156): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Foundation\\Http\\Kernel->bootstrap()\n#16 /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#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#19 {main}', '[]', '2023-07-24 06:24:36', '2023-07-24 06:24:36'), (2906, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 21)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(320): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Foundation\\Console\\Kernel->bootstrap()\n#16 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#17 {main}', '[]', '2023-07-24 06:25:15', '2023-07-24 06:25:15'), (2907, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'RainLab\\Notify\\Classes\\Notifier\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/Plugin.php:208\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(317): TPS\\Birzha\\Plugin->boot()\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(299): System\\Classes\\PluginManager->bootPlugin(Object(TPS\\Birzha\\Plugin))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/ServiceProvider.php(113): System\\Classes\\PluginManager->bootAll()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\ServiceProvider->boot()\n#4 /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#5 /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#6 /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#7 /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#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(856): Illuminate\\Container\\Container->call(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(839): Illuminate\\Foundation\\Application->bootProvider(Object(System\\ServiceProvider))\n#10 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}(Object(System\\ServiceProvider), 21)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(840): array_walk(Array, Object(Closure))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Application.php(127): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap(Object(October\\Rain\\Foundation\\Application))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(320): October\\Rain\\Foundation\\Application->bootstrapWith(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(129): Illuminate\\Foundation\\Console\\Kernel->bootstrap()\n#16 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#17 {main}', '[]', '2023-07-24 06:25:15', '2023-07-24 06:25:15'), (2908, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:25:15', '2023-07-24 06:25:15'), (2909, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:26:16', '2023-07-24 06:26:16'), (2910, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:27:15', '2023-07-24 06:27:15'), (2911, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:28:15', '2023-07-24 06:28:15'), (2912, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:29:15', '2023-07-24 06:29:15'), (2913, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:30:15', '2023-07-24 06:30:15'), (2914, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:31:15', '2023-07-24 06:31:15'), (2915, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:32:15', '2023-07-24 06:32:15'), (2916, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:33:15', '2023-07-24 06:33:15'), (2917, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:34:15', '2023-07-24 06:34:15'), (2918, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:35:15', '2023-07-24 06:35:15'), (2919, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:36:16', '2023-07-24 06:36:16'), (2920, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:37:15', '2023-07-24 06:37:15'), (2921, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:38:15', '2023-07-24 06:38:15'), (2922, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:39:15', '2023-07-24 06:39:15'), (2923, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:40:15', '2023-07-24 06:40:15'), (2924, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:41:15', '2023-07-24 06:41:15'), (2925, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:42:15', '2023-07-24 06:42:15'), (2926, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:43:16', '2023-07-24 06:43:16'), (2927, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:44:15', '2023-07-24 06:44:15'), (2928, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:45:16', '2023-07-24 06:45:16'), (2929, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:46:15', '2023-07-24 06:46:15'), (2930, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:47:15', '2023-07-24 06:47:15'), (2931, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Class \'UserSettings\' not found in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/vdomah/jwtauth/routes.php:126\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(205): System\\Classes\\PluginManager->{closure}(Object(Illuminate\\Support\\Facades\\Request))\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(179): Illuminate\\Routing\\Route->runCallable()\n#2 /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#3 /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#4 /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#5 /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#6 /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#7 /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#8 /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#9 /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#10 /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#11 /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#12 /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#13 /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#14 /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#15 /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#16 /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#17 /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#18 /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#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#21 {main}', '[]', '2023-07-24 06:47:33', '2023-07-24 06:47:33'), (2932, 'info', 'The email field is required.', '[]', '2023-07-24 06:48:08', '2023-07-24 06:48:08'), (2933, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:48:15', '2023-07-24 06:48:15'), (2934, 'info', 'The email field is required.', '[]', '2023-07-24 06:48:50', '2023-07-24 06:48:50'), (2935, 'info', 'The email field is required.', '[]', '2023-07-24 06:49:15', '2023-07-24 06:49:15'), (2936, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:49:15', '2023-07-24 06:49:15'), (2937, 'info', 'The email field is required.', '[]', '2023-07-24 06:49:26', '2023-07-24 06:49:26'), (2938, 'info', 'The email field is required.', '[]', '2023-07-24 06:49:59', '2023-07-24 06:49:59'), (2939, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:50:15', '2023-07-24 06:50:15'), (2940, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:51:15', '2023-07-24 06:51:15'), (2941, 'info', 'The email field is required.', '[]', '2023-07-24 06:52:08', '2023-07-24 06:52:08'), (2942, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:52:15', '2023-07-24 06:52:15'), (2943, 'info', 'The email field is required.', '[]', '2023-07-24 06:52:26', '2023-07-24 06:52:26'), (2944, 'info', 'The email field is required.', '[]', '2023-07-24 06:52:42', '2023-07-24 06:52:42'), (2945, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:53:15', '2023-07-24 06:53:15'), (2946, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:54:15', '2023-07-24 06:54:15'), (2947, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:55:15', '2023-07-24 06:55:15'), (2948, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:56:15', '2023-07-24 06:56:15'), (2949, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:57:15', '2023-07-24 06:57:15'), (2950, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:58:15', '2023-07-24 06:58:15'), (2951, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 06:59:15', '2023-07-24 06:59:15'), (2952, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:00:15', '2023-07-24 07:00:15'), (2953, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:01:16', '2023-07-24 07:01:16'), (2954, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:02:15', '2023-07-24 07:02:15'), (2955, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:03:15', '2023-07-24 07:03:15'), (2956, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:04:15', '2023-07-24 07:04:15'), (2957, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:05:15', '2023-07-24 07:05:15'), (2958, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:06:16', '2023-07-24 07:06:16'), (2959, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:07:15', '2023-07-24 07:07:15'), (2960, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:08:15', '2023-07-24 07:08:15'), (2961, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:09:15', '2023-07-24 07:09:15'), (2962, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:10:16', '2023-07-24 07:10:16'), (2963, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:11:15', '2023-07-24 07:11:15'), (2964, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:12:15', '2023-07-24 07:12:15'), (2965, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:13:15', '2023-07-24 07:13:15'), (2966, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:14:16', '2023-07-24 07:14:16'), (2967, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:15:15', '2023-07-24 07:15:15'), (2968, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:16:16', '2023-07-24 07:16:16'), (2969, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:17:15', '2023-07-24 07:17:15'), (2970, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:18:16', '2023-07-24 07:18:16'), (2971, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:19:15', '2023-07-24 07:19:15'), (2972, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:20:16', '2023-07-24 07:20:16'), (2973, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:21:15', '2023-07-24 07:21:15'), (2974, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:22:15', '2023-07-24 07:22:15'), (2975, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:23:16', '2023-07-24 07:23:16'), (2976, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:24:15', '2023-07-24 07:24:15'), (2977, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:25:16', '2023-07-24 07:25:16'), (2978, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:26:15', '2023-07-24 07:26:15'), (2979, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:27:15', '2023-07-24 07:27:15'), (2980, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:28:15', '2023-07-24 07:28:15'), (2981, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:29:16', '2023-07-24 07:29:16'), (2982, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:30:15', '2023-07-24 07:30:15'), (2983, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:31:15', '2023-07-24 07:31:15'), (2984, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:32:15', '2023-07-24 07:32:15'), (2985, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:33:15', '2023-07-24 07:33:15'), (2986, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:34:15', '2023-07-24 07:34:15'), (2987, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:35:16', '2023-07-24 07:35:16'), (2988, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:36:15', '2023-07-24 07:36:15'), (2989, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:37:15', '2023-07-24 07:37:15'), (2990, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:38:15', '2023-07-24 07:38:15'), (2991, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:39:15', '2023-07-24 07:39:15'), (2992, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:40:15', '2023-07-24 07:40:15'), (2993, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:41:16', '2023-07-24 07:41:16'), (2994, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:42:15', '2023-07-24 07:42:15'), (2995, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:43:16', '2023-07-24 07:43:16'), (2996, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:44:16', '2023-07-24 07:44:16'), (2997, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:45:16', '2023-07-24 07:45:16'), (2998, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:46:16', '2023-07-24 07:46:16'), (2999, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:47:16', '2023-07-24 07:47:16'), (3000, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:48:16', '2023-07-24 07:48:16'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (3001, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:49:16', '2023-07-24 07:49:16'), (3002, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:50:16', '2023-07-24 07:50:16'), (3003, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:51:16', '2023-07-24 07:51:16'), (3004, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:52:16', '2023-07-24 07:52:16'), (3005, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:53:15', '2023-07-24 07:53:15'), (3006, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:54:16', '2023-07-24 07:54:16'), (3007, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:55:16', '2023-07-24 07:55:16'), (3008, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:56:16', '2023-07-24 07:56:16'), (3009, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:57:15', '2023-07-24 07:57:15'), (3010, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:58:16', '2023-07-24 07:58:16'), (3011, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 07:59:16', '2023-07-24 07:59:16'), (3012, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:00:16', '2023-07-24 08:00:16'), (3013, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:01:16', '2023-07-24 08:01:16'), (3014, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:02:15', '2023-07-24 08:02:15'), (3015, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:03:16', '2023-07-24 08:03:16'), (3016, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:04:16', '2023-07-24 08:04:16'), (3017, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:05:16', '2023-07-24 08:05:16'), (3018, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:06:16', '2023-07-24 08:06:16'), (3019, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:07:16', '2023-07-24 08:07:16'), (3020, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:08:16', '2023-07-24 08:08:16'), (3021, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:09:16', '2023-07-24 08:09:16'), (3022, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:10:16', '2023-07-24 08:10:16'), (3023, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:11:16', '2023-07-24 08:11:16'), (3024, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:12:15', '2023-07-24 08:12:15'), (3025, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:13:15', '2023-07-24 08:13:15'), (3026, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:14:15', '2023-07-24 08:14:15'), (3027, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:15:16', '2023-07-24 08:15:16'), (3028, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:16:16', '2023-07-24 08:16:16'), (3029, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:17:16', '2023-07-24 08:17:16'), (3030, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:18:16', '2023-07-24 08:18:16'), (3031, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:19:16', '2023-07-24 08:19:16'), (3032, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:20:16', '2023-07-24 08:20:16'), (3033, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:21:16', '2023-07-24 08:21:16'), (3034, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:22:16', '2023-07-24 08:22:16'), (3035, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:23:16', '2023-07-24 08:23:16'), (3036, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:24:16', '2023-07-24 08:24:16'), (3037, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:25:16', '2023-07-24 08:25:16'), (3038, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:26:16', '2023-07-24 08:26:16'), (3039, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:27:16', '2023-07-24 08:27:16'), (3040, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:28:16', '2023-07-24 08:28:16'), (3041, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:29:16', '2023-07-24 08:29:16'), (3042, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:30:16', '2023-07-24 08:30:16'), (3043, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:31:16', '2023-07-24 08:31:16'), (3044, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:32:16', '2023-07-24 08:32:16'), (3045, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:33:16', '2023-07-24 08:33:16'), (3046, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:34:16', '2023-07-24 08:34:16'), (3047, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:35:16', '2023-07-24 08:35:16'), (3048, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:36:16', '2023-07-24 08:36:16'), (3049, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:37:16', '2023-07-24 08:37:16'), (3050, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:38:16', '2023-07-24 08:38:16'), (3051, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:39:16', '2023-07-24 08:39:16'), (3052, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:40:16', '2023-07-24 08:40:16'), (3053, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:41:16', '2023-07-24 08:41:16'), (3054, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:42:16', '2023-07-24 08:42:16'), (3055, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:43:16', '2023-07-24 08:43:16'), (3056, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:44:16', '2023-07-24 08:44:16'), (3057, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:45:16', '2023-07-24 08:45:16'), (3058, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:46:16', '2023-07-24 08:46:16'), (3059, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:47:16', '2023-07-24 08:47:16'), (3060, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:48:16', '2023-07-24 08:48:16'), (3061, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:49:16', '2023-07-24 08:49:16'), (3062, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:50:16', '2023-07-24 08:50:16'), (3063, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:51:16', '2023-07-24 08:51:16'), (3064, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:52:16', '2023-07-24 08:52:16'), (3065, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:53:16', '2023-07-24 08:53:16'), (3066, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:54:16', '2023-07-24 08:54:16'), (3067, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:55:16', '2023-07-24 08:55:16'), (3068, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:56:16', '2023-07-24 08:56:16'), (3069, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:57:16', '2023-07-24 08:57:16'), (3070, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:58:16', '2023-07-24 08:58:16'), (3071, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 08:59:16', '2023-07-24 08:59:16'), (3072, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:00:16', '2023-07-24 09:00:16'), (3073, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:01:16', '2023-07-24 09:01:16'), (3074, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:02:16', '2023-07-24 09:02:16'), (3075, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:03:16', '2023-07-24 09:03:16'), (3076, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:04:16', '2023-07-24 09:04:16'), (3077, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:05:16', '2023-07-24 09:05:16'), (3078, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:06:16', '2023-07-24 09:06:16'), (3079, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:07:16', '2023-07-24 09:07:16'), (3080, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:08:16', '2023-07-24 09:08:16'), (3081, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:09:16', '2023-07-24 09:09:16'), (3082, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:10:16', '2023-07-24 09:10:16'), (3083, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:11:16', '2023-07-24 09:11:16'), (3084, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:12:16', '2023-07-24 09:12:16'), (3085, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:13:16', '2023-07-24 09:13:16'), (3086, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:14:16', '2023-07-24 09:14:16'), (3087, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:15:16', '2023-07-24 09:15:16'), (3088, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:16:16', '2023-07-24 09:16:16'), (3089, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:17:16', '2023-07-24 09:17:16'), (3090, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:18:16', '2023-07-24 09:18:16'), (3091, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:19:16', '2023-07-24 09:19:16'), (3092, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:20:16', '2023-07-24 09:20:16'), (3093, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:21:16', '2023-07-24 09:21:16'), (3094, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:22:16', '2023-07-24 09:22:16'), (3095, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:23:16', '2023-07-24 09:23:16'), (3096, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:24:16', '2023-07-24 09:24:16'), (3097, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:25:16', '2023-07-24 09:25:16'), (3098, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:26:16', '2023-07-24 09:26:16'), (3099, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:27:16', '2023-07-24 09:27:16'), (3100, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:28:16', '2023-07-24 09:28:16'), (3101, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:29:16', '2023-07-24 09:29:16'), (3102, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:30:16', '2023-07-24 09:30:16'), (3103, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:31:16', '2023-07-24 09:31:16'), (3104, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:32:16', '2023-07-24 09:32:16'), (3105, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:33:16', '2023-07-24 09:33:16'), (3106, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:34:16', '2023-07-24 09:34:16'), (3107, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:35:16', '2023-07-24 09:35:16'), (3108, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:36:16', '2023-07-24 09:36:16'), (3109, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:37:16', '2023-07-24 09:37:16'), (3110, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:38:16', '2023-07-24 09:38:16'), (3111, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:39:16', '2023-07-24 09:39:16'), (3112, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:40:16', '2023-07-24 09:40:16'), (3113, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:41:16', '2023-07-24 09:41:16'), (3114, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:42:16', '2023-07-24 09:42:16'), (3115, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:43:16', '2023-07-24 09:43:16'), (3116, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:44:16', '2023-07-24 09:44:16'), (3117, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:45:16', '2023-07-24 09:45:16'), (3118, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:46:16', '2023-07-24 09:46:16'), (3119, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:47:16', '2023-07-24 09:47:16'), (3120, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:48:16', '2023-07-24 09:48:16'), (3121, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:49:16', '2023-07-24 09:49:16'), (3122, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:50:16', '2023-07-24 09:50:16'), (3123, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:51:16', '2023-07-24 09:51:16'), (3124, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:52:16', '2023-07-24 09:52:16'), (3125, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:53:16', '2023-07-24 09:53:16'), (3126, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:54:16', '2023-07-24 09:54:16'), (3127, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:55:16', '2023-07-24 09:55:16'), (3128, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:56:16', '2023-07-24 09:56:16'), (3129, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:57:16', '2023-07-24 09:57:16'), (3130, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:58:16', '2023-07-24 09:58:16'), (3131, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 09:59:16', '2023-07-24 09:59:16'), (3132, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:00:16', '2023-07-24 10:00:16'), (3133, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:01:16', '2023-07-24 10:01:16'), (3134, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:02:16', '2023-07-24 10:02:16'), (3135, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:03:16', '2023-07-24 10:03:16'), (3136, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:04:16', '2023-07-24 10:04:16'), (3137, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:05:16', '2023-07-24 10:05:16'), (3138, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:06:16', '2023-07-24 10:06:16'), (3139, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:07:16', '2023-07-24 10:07:16'), (3140, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:08:16', '2023-07-24 10:08:16'), (3141, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:09:16', '2023-07-24 10:09:16'), (3142, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:10:17', '2023-07-24 10:10:17'), (3143, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:11:16', '2023-07-24 10:11:16'), (3144, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:12:16', '2023-07-24 10:12:16'), (3145, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:13:16', '2023-07-24 10:13:16'), (3146, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:14:16', '2023-07-24 10:14:16'), (3147, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:15:16', '2023-07-24 10:15:16'), (3148, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:16:16', '2023-07-24 10:16:16'), (3149, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:17:16', '2023-07-24 10:17:16'), (3150, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:18:16', '2023-07-24 10:18:16'), (3151, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:19:16', '2023-07-24 10:19:16'), (3152, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:20:16', '2023-07-24 10:20:16'), (3153, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:21:16', '2023-07-24 10:21:16'), (3154, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:22:16', '2023-07-24 10:22:16'), (3155, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:23:16', '2023-07-24 10:23:16'), (3156, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:24:16', '2023-07-24 10:24:16'), (3157, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:25:16', '2023-07-24 10:25:16'), (3158, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:26:16', '2023-07-24 10:26:16'), (3159, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:27:16', '2023-07-24 10:27:16'), (3160, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:28:17', '2023-07-24 10:28:17'), (3161, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:29:17', '2023-07-24 10:29:17'), (3162, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:30:17', '2023-07-24 10:30:17'), (3163, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:31:16', '2023-07-24 10:31:16'), (3164, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:32:16', '2023-07-24 10:32:16'), (3165, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:33:16', '2023-07-24 10:33:16'), (3166, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:34:17', '2023-07-24 10:34:17'), (3167, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:35:16', '2023-07-24 10:35:16'), (3168, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:36:16', '2023-07-24 10:36:16'), (3169, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:37:17', '2023-07-24 10:37:17'), (3170, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:38:16', '2023-07-24 10:38:16'), (3171, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:39:16', '2023-07-24 10:39:16'), (3172, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:40:16', '2023-07-24 10:40:16'), (3173, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:41:16', '2023-07-24 10:41:16'), (3174, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:42:16', '2023-07-24 10:42:16'), (3175, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:43:17', '2023-07-24 10:43:17'), (3176, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:44:16', '2023-07-24 10:44:16'), (3177, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:45:16', '2023-07-24 10:45:16'), (3178, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:46:16', '2023-07-24 10:46:16'), (3179, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:47:16', '2023-07-24 10:47:16'), (3180, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:48:16', '2023-07-24 10:48:16'), (3181, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:49:16', '2023-07-24 10:49:16'), (3182, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:50:16', '2023-07-24 10:50:16'), (3183, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:51:17', '2023-07-24 10:51:17'), (3184, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:52:16', '2023-07-24 10:52:16'), (3185, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:53:16', '2023-07-24 10:53:16'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (3186, 'error', 'PDOException: SQLSTATE[23000]: Integrity constraint violation: 1048 Column \'sort_order\' cannot be null 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}(\'insert into `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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'q2djL3LhY2YuJ1P...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#21 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#24 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/cate...\')\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#64 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#65 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[23000]: Integrity constraint violation: 1048 Column \'sort_order\' cannot be null 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}(\'insert into `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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'q2djL3LhY2YuJ1P...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#21 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#24 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/cate...\')\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#64 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#65 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[23000]: Integrity constraint violation: 1048 Column \'sort_order\' cannot be null (SQL: insert into `tps_birzha_categories` (`name`, `slug`, `sort_order`, `meta_desc`, `status`, `is_featured`, `icon`, `updated_at`, `created_at`) values (sdfsdfsdf, sdfsdfsdf, ?, , 1, 0, , 2023-07-24 10:53:23, 2023-07-24 10:53:23)) 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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'q2djL3LhY2YuJ1P...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#18 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#21 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/cate...\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#61 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#62 {main}', '[]', '2023-07-24 10:53:24', '2023-07-24 10:53:24'), (3187, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:54:17', '2023-07-24 10:54:17'), (3188, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:55:16', '2023-07-24 10:55:16'), (3189, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:56:16', '2023-07-24 10:56:16'), (3190, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:57:16', '2023-07-24 10:57:16'), (3191, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:58:16', '2023-07-24 10:58:16'), (3192, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 10:59:16', '2023-07-24 10:59:16'), (3193, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:00:16', '2023-07-24 11:00:16'), (3194, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:01:17', '2023-07-24 11:01:17'), (3195, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:02:16', '2023-07-24 11:02:16'), (3196, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:03:17', '2023-07-24 11:03:17'), (3197, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:04:17', '2023-07-24 11:04:17'), (3198, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:05:16', '2023-07-24 11:05:16'), (3199, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:06:17', '2023-07-24 11:06:17'), (3200, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:07:17', '2023-07-24 11:07:17'), (3201, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:08:17', '2023-07-24 11:08:17'), (3202, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:09:17', '2023-07-24 11:09:17'), (3203, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:10:17', '2023-07-24 11:10:17'), (3204, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:11:17', '2023-07-24 11:11:17'), (3205, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:12:16', '2023-07-24 11:12:16'), (3206, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:13:17', '2023-07-24 11:13:17'), (3207, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:14:17', '2023-07-24 11:14:17'), (3208, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:15:17', '2023-07-24 11:15:17'), (3209, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:16:17', '2023-07-24 11:16:17'), (3210, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:17:17', '2023-07-24 11:17:17'), (3211, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:18:17', '2023-07-24 11:18:17'), (3212, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:19:16', '2023-07-24 11:19:16'), (3213, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:20:17', '2023-07-24 11:20:17'), (3214, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:21:17', '2023-07-24 11:21:17'), (3215, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:22:16', '2023-07-24 11:22:16'), (3216, 'error', 'PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id_id\' in \'field list\' in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:82\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php(82): PDO->prepare(\'insert into `tp...\', Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(457): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'insert into `tp...\')\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}(\'insert into `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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'bl9gHH1KlNPMdD4...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#21 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#24 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#64 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#65 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id_id\' in \'field list\' 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/PDOConnection.php(87): 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(457): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'insert into `tp...\')\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}(\'insert into `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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'bl9gHH1KlNPMdD4...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#21 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#24 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#64 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#65 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id_id\' in \'field list\' (SQL: insert into `tps_birzha_user_sliders` (`user_id_id`, `img`, `note`, `updated_at`, `created_at`) values (2, /sliders/8.jpg, , 2023-07-24 11:22:29, 2023-07-24 11:22:29)) 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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'bl9gHH1KlNPMdD4...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#18 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#21 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#61 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#62 {main}', '[]', '2023-07-24 11:22:29', '2023-07-24 11:22:29'), (3217, 'error', 'PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id_id\' in \'field list\' in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:82\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php(82): PDO->prepare(\'insert into `tp...\', Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(457): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'insert into `tp...\')\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}(\'insert into `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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'bl9gHH1KlNPMdD4...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#21 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#24 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#64 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#65 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id_id\' in \'field list\' 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/PDOConnection.php(87): 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(457): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'insert into `tp...\')\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}(\'insert into `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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'bl9gHH1KlNPMdD4...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#21 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#24 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#64 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#65 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id_id\' in \'field list\' (SQL: insert into `tps_birzha_user_sliders` (`user_id_id`, `img`, `note`, `updated_at`, `created_at`) values (2, /sliders/8.jpg, , 2023-07-24 11:22:49, 2023-07-24 11:22:49)) 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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'bl9gHH1KlNPMdD4...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#18 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#21 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#61 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#62 {main}', '[]', '2023-07-24 11:22:49', '2023-07-24 11:22:49'), (3218, 'error', 'PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id_id\' in \'field list\' in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:82\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php(82): PDO->prepare(\'insert into `tp...\', Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(457): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'insert into `tp...\')\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}(\'insert into `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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'rGPZyh2Fqvxw1jL...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#21 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#24 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#64 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#65 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id_id\' in \'field list\' 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/PDOConnection.php(87): 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(457): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'insert into `tp...\')\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}(\'insert into `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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'rGPZyh2Fqvxw1jL...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#21 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#24 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#64 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#65 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id_id\' in \'field list\' (SQL: insert into `tps_birzha_user_sliders` (`user_id_id`, `img`, `note`, `updated_at`, `created_at`) values (1, /sliders/8.jpg, , 2023-07-24 11:22:58, 2023-07-24 11:22:58)) 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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'rGPZyh2Fqvxw1jL...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#18 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#21 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#61 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#62 {main}', '[]', '2023-07-24 11:22:58', '2023-07-24 11:22:58'), (3219, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:23:17', '2023-07-24 11:23:17'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (3220, 'error', 'PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id_id\' in \'field list\' in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:82\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php(82): PDO->prepare(\'insert into `tp...\', Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(457): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'insert into `tp...\')\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}(\'insert into `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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'vsQpM8NvDNpj4IF...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#21 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#24 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#64 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#65 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id_id\' in \'field list\' 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/PDOConnection.php(87): 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(457): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'insert into `tp...\')\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}(\'insert into `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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'vsQpM8NvDNpj4IF...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#21 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#24 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#64 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#65 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id_id\' in \'field list\' (SQL: insert into `tps_birzha_user_sliders` (`user_id_id`, `img`, `note`, `updated_at`, `created_at`) values (1, /sliders/8.jpg, , 2023-07-24 11:23:57, 2023-07-24 11:23:57)) 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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'vsQpM8NvDNpj4IF...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#18 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#21 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#61 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#62 {main}', '[]', '2023-07-24 11:23:57', '2023-07-24 11:23:57'), (3221, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:24:16', '2023-07-24 11:24:16'), (3222, 'error', 'ErrorException: Undefined property: TPS\\Birzha\\Models\\UserSliders::$user_id in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php:98\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(98): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(8, \'Undefined prope...\', \'/Users/tmstore/...\', 98, Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(71): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->addConstraints()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(68): Illuminate\\Database\\Eloquent\\Relations\\Relation->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders))\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Relations/BelongsTo.php(21): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(463): October\\Rain\\Database\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(318): October\\Rain\\Database\\Model->belongsTo(\'RainLab\\\\User\\\\Mo...\', \'user_id\', \'id\', \'user_id\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(678): October\\Rain\\Database\\Model->handleRelation(\'user_id\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php(415): October\\Rain\\Database\\Model->__call(\'user_id\', Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(1012): Illuminate\\Database\\Eloquent\\Model->getRelationshipFromMethod(\'user_id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1527): October\\Rain\\Database\\Model->getAttribute(\'user_id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(365): Illuminate\\Database\\Eloquent\\Model->__get(\'user_id\')\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(663): October\\Rain\\Database\\Model->extendableGet(\'user_id\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(98): October\\Rain\\Database\\Model->__get(\'user_id\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(71): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->addConstraints()\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(68): Illuminate\\Database\\Eloquent\\Relations\\Relation->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Relations/BelongsTo.php(21): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(463): October\\Rain\\Database\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(318): October\\Rain\\Database\\Model->belongsTo(\'RainLab\\\\User\\\\Mo...\', \'user_id\', \'id\', \'user_id\')\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(678): October\\Rain\\Database\\Model->handleRelation(\'user_id\')\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(778): October\\Rain\\Database\\Model->__call(\'user_id\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/FormField.php(702): October\\Rain\\Database\\Model->getRelationValue(\'user_id\')\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/FormField.php(632): Backend\\Classes\\FormField->getFieldNameFromData(\'user_id\', Object(TPS\\Birzha\\Models\\UserSliders), NULL)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(1118): Backend\\Classes\\FormField->getValueFromData(Object(TPS\\Birzha\\Models\\UserSliders), NULL)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(877): Backend\\Widgets\\Form->getFieldValue(Object(Backend\\Classes\\FormField))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(722): Backend\\Widgets\\Form->makeFormField(\'user_id\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(552): Backend\\Widgets\\Form->addFields(Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(154): Backend\\Widgets\\Form->defineFormFields()\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(174): Backend\\Widgets\\Form->bindToController()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(244): Backend\\Behaviors\\FormController->initForm(Object(TPS\\Birzha\\Models\\UserSliders))\n#29 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#31 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#32 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#33 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#34 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#35 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#36 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#37 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#38 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /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#64 /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#65 /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#66 /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#67 /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#68 /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#69 /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#70 /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#71 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#72 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#73 {main}', '[]', '2023-07-24 11:24:47', '2023-07-24 11:24:47'), (3223, 'error', 'ErrorException: Undefined property: TPS\\Birzha\\Models\\UserSliders::$user_id in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php:98\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(98): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(8, \'Undefined prope...\', \'/Users/tmstore/...\', 98, Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(71): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->addConstraints()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(68): Illuminate\\Database\\Eloquent\\Relations\\Relation->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders))\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Relations/BelongsTo.php(21): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(463): October\\Rain\\Database\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(318): October\\Rain\\Database\\Model->belongsTo(\'RainLab\\\\User\\\\Mo...\', \'user_id\', \'id\', \'user_id\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(678): October\\Rain\\Database\\Model->handleRelation(\'user_id\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php(415): October\\Rain\\Database\\Model->__call(\'user_id\', Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(1012): Illuminate\\Database\\Eloquent\\Model->getRelationshipFromMethod(\'user_id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1527): October\\Rain\\Database\\Model->getAttribute(\'user_id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(365): Illuminate\\Database\\Eloquent\\Model->__get(\'user_id\')\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(663): October\\Rain\\Database\\Model->extendableGet(\'user_id\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(98): October\\Rain\\Database\\Model->__get(\'user_id\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(71): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->addConstraints()\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(68): Illuminate\\Database\\Eloquent\\Relations\\Relation->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Relations/BelongsTo.php(21): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(463): October\\Rain\\Database\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(318): October\\Rain\\Database\\Model->belongsTo(\'RainLab\\\\User\\\\Mo...\', \'user_id\', \'id\', \'user_id\')\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(678): October\\Rain\\Database\\Model->handleRelation(\'user_id\')\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(778): October\\Rain\\Database\\Model->__call(\'user_id\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/FormField.php(702): October\\Rain\\Database\\Model->getRelationValue(\'user_id\')\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/FormField.php(632): Backend\\Classes\\FormField->getFieldNameFromData(\'user_id\', Object(TPS\\Birzha\\Models\\UserSliders), NULL)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(1118): Backend\\Classes\\FormField->getValueFromData(Object(TPS\\Birzha\\Models\\UserSliders), NULL)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(877): Backend\\Widgets\\Form->getFieldValue(Object(Backend\\Classes\\FormField))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(722): Backend\\Widgets\\Form->makeFormField(\'user_id\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(552): Backend\\Widgets\\Form->addFields(Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(154): Backend\\Widgets\\Form->defineFormFields()\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(174): Backend\\Widgets\\Form->bindToController()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(244): Backend\\Behaviors\\FormController->initForm(Object(TPS\\Birzha\\Models\\UserSliders))\n#29 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#31 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#32 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#33 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#34 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#35 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#36 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#37 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#38 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /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#64 /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#65 /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#66 /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#67 /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#68 /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#69 /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#70 /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#71 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#72 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#73 {main}', '[]', '2023-07-24 11:24:56', '2023-07-24 11:24:56'), (3224, 'error', 'ErrorException: Undefined property: TPS\\Birzha\\Models\\UserSliders::$user_id in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php:98\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(98): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(8, \'Undefined prope...\', \'/Users/tmstore/...\', 98, Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(71): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->addConstraints()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(68): Illuminate\\Database\\Eloquent\\Relations\\Relation->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders))\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Relations/BelongsTo.php(21): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(463): October\\Rain\\Database\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(318): October\\Rain\\Database\\Model->belongsTo(\'RainLab\\\\User\\\\Mo...\', \'user_id\', \'id\', \'user_id\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(678): October\\Rain\\Database\\Model->handleRelation(\'user_id\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php(415): October\\Rain\\Database\\Model->__call(\'user_id\', Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(1012): Illuminate\\Database\\Eloquent\\Model->getRelationshipFromMethod(\'user_id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1527): October\\Rain\\Database\\Model->getAttribute(\'user_id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(365): Illuminate\\Database\\Eloquent\\Model->__get(\'user_id\')\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(663): October\\Rain\\Database\\Model->extendableGet(\'user_id\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(98): October\\Rain\\Database\\Model->__get(\'user_id\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(71): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->addConstraints()\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(68): Illuminate\\Database\\Eloquent\\Relations\\Relation->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Relations/BelongsTo.php(21): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(463): October\\Rain\\Database\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(318): October\\Rain\\Database\\Model->belongsTo(\'RainLab\\\\User\\\\Mo...\', \'user_id\', \'id\', \'user_id\')\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(678): October\\Rain\\Database\\Model->handleRelation(\'user_id\')\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(778): October\\Rain\\Database\\Model->__call(\'user_id\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/FormField.php(702): October\\Rain\\Database\\Model->getRelationValue(\'user_id\')\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/FormField.php(632): Backend\\Classes\\FormField->getFieldNameFromData(\'user_id\', Object(TPS\\Birzha\\Models\\UserSliders), NULL)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(1118): Backend\\Classes\\FormField->getValueFromData(Object(TPS\\Birzha\\Models\\UserSliders), NULL)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(877): Backend\\Widgets\\Form->getFieldValue(Object(Backend\\Classes\\FormField))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(722): Backend\\Widgets\\Form->makeFormField(\'user_id\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(552): Backend\\Widgets\\Form->addFields(Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(154): Backend\\Widgets\\Form->defineFormFields()\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(174): Backend\\Widgets\\Form->bindToController()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(244): Backend\\Behaviors\\FormController->initForm(Object(TPS\\Birzha\\Models\\UserSliders))\n#29 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#31 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#32 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#33 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#34 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#35 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#36 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#37 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#38 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /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#64 /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#65 /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#66 /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#67 /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#68 /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#69 /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#70 /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#71 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#72 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#73 {main}', '[]', '2023-07-24 11:25:13', '2023-07-24 11:25:13'), (3225, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:25:17', '2023-07-24 11:25:17'), (3226, 'error', 'ErrorException: Undefined property: TPS\\Birzha\\Models\\UserSliders::$user_id in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php:98\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(98): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(8, \'Undefined prope...\', \'/Users/tmstore/...\', 98, Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(71): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->addConstraints()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(68): Illuminate\\Database\\Eloquent\\Relations\\Relation->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders))\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Relations/BelongsTo.php(21): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(463): October\\Rain\\Database\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(318): October\\Rain\\Database\\Model->belongsTo(\'RainLab\\\\User\\\\Mo...\', \'user_id\', \'id\', \'user_id\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(678): October\\Rain\\Database\\Model->handleRelation(\'user_id\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php(415): October\\Rain\\Database\\Model->__call(\'user_id\', Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(1012): Illuminate\\Database\\Eloquent\\Model->getRelationshipFromMethod(\'user_id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1527): October\\Rain\\Database\\Model->getAttribute(\'user_id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(365): Illuminate\\Database\\Eloquent\\Model->__get(\'user_id\')\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(663): October\\Rain\\Database\\Model->extendableGet(\'user_id\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(98): October\\Rain\\Database\\Model->__get(\'user_id\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(71): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->addConstraints()\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php(68): Illuminate\\Database\\Eloquent\\Relations\\Relation->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Relations/BelongsTo.php(21): Illuminate\\Database\\Eloquent\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(463): October\\Rain\\Database\\Relations\\BelongsTo->__construct(Object(October\\Rain\\Database\\Builder), Object(TPS\\Birzha\\Models\\UserSliders), \'user_id\', \'id\', \'user_id\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(318): October\\Rain\\Database\\Model->belongsTo(\'RainLab\\\\User\\\\Mo...\', \'user_id\', \'id\', \'user_id\')\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(678): October\\Rain\\Database\\Model->handleRelation(\'user_id\')\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Concerns/HasRelationships.php(778): October\\Rain\\Database\\Model->__call(\'user_id\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/FormField.php(702): October\\Rain\\Database\\Model->getRelationValue(\'user_id\')\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/FormField.php(632): Backend\\Classes\\FormField->getFieldNameFromData(\'user_id\', Object(TPS\\Birzha\\Models\\UserSliders), NULL)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(1118): Backend\\Classes\\FormField->getValueFromData(Object(TPS\\Birzha\\Models\\UserSliders), NULL)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(877): Backend\\Widgets\\Form->getFieldValue(Object(Backend\\Classes\\FormField))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(722): Backend\\Widgets\\Form->makeFormField(\'user_id\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(552): Backend\\Widgets\\Form->addFields(Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Widgets/Form.php(154): Backend\\Widgets\\Form->defineFormFields()\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(174): Backend\\Widgets\\Form->bindToController()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(244): Backend\\Behaviors\\FormController->initForm(Object(TPS\\Birzha\\Models\\UserSliders))\n#29 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#31 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#32 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#33 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#34 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#35 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#36 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#37 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#38 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /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#64 /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#65 /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#66 /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#67 /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#68 /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#69 /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#70 /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#71 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#72 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#73 {main}', '[]', '2023-07-24 11:25:34', '2023-07-24 11:25:34'), (3227, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:26:17', '2023-07-24 11:26:17'), (3228, 'error', 'PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user\' in \'field list\' in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:82\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php(82): PDO->prepare(\'insert into `tp...\', Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(457): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'insert into `tp...\')\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}(\'insert into `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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'vsQpM8NvDNpj4IF...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#21 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#24 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#64 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#65 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user\' in \'field list\' 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/PDOConnection.php(87): 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(457): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'insert into `tp...\')\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}(\'insert into `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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'vsQpM8NvDNpj4IF...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#21 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#24 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#64 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#65 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user\' in \'field list\' (SQL: insert into `tps_birzha_user_sliders` (`img`, `note`, `user`, `updated_at`, `created_at`) values (/sliders/8.jpg, , ?, 2023-07-24 11:26:37, 2023-07-24 11:26:37)) 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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'vsQpM8NvDNpj4IF...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#18 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#21 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#61 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#62 {main}', '[]', '2023-07-24 11:26:37', '2023-07-24 11:26:37'), (3229, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:27:17', '2023-07-24 11:27:17'), (3230, 'error', 'PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id\' in \'field list\' in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:82\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php(82): PDO->prepare(\'update `tps_bir...\', Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(484): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'update `tps_bir...\')\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}(\'update `tps_bir...\', 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(\'update `tps_bir...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): Illuminate\\Database\\Connection->run(\'update `tps_bir...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(428): Illuminate\\Database\\Connection->affectingStatement(\'update `tps_bir...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2736): Illuminate\\Database\\Connection->update(\'update `tps_bir...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(264): Illuminate\\Database\\Query\\Builder->update(Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(799): October\\Rain\\Database\\QueryBuilder->update(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(746): Illuminate\\Database\\Eloquent\\Builder->update(Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(661): Illuminate\\Database\\Eloquent\\Model->performUpdate(Object(October\\Rain\\Database\\Builder))\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(320): October\\Rain\\Database\\Model->save(NULL, \'kexJP1PoOAQhvva...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(322): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#18 [internal function]: Backend\\Behaviors\\FormController->update_onSave(\'1\')\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'update_onSave\', Array)\n#21 [internal function]: Backend\\Classes\\Controller->__call(\'update_onSave\', Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'update\', Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#61 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#62 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id\' in \'field list\' 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/PDOConnection.php(87): 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(484): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'update `tps_bir...\')\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}(\'update `tps_bir...\', 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(\'update `tps_bir...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): Illuminate\\Database\\Connection->run(\'update `tps_bir...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(428): Illuminate\\Database\\Connection->affectingStatement(\'update `tps_bir...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2736): Illuminate\\Database\\Connection->update(\'update `tps_bir...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(264): Illuminate\\Database\\Query\\Builder->update(Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(799): October\\Rain\\Database\\QueryBuilder->update(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(746): Illuminate\\Database\\Eloquent\\Builder->update(Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(661): Illuminate\\Database\\Eloquent\\Model->performUpdate(Object(October\\Rain\\Database\\Builder))\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(320): October\\Rain\\Database\\Model->save(NULL, \'kexJP1PoOAQhvva...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(322): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#18 [internal function]: Backend\\Behaviors\\FormController->update_onSave(\'1\')\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'update_onSave\', Array)\n#21 [internal function]: Backend\\Classes\\Controller->__call(\'update_onSave\', Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'update\', Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#61 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#62 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id\' in \'field list\' (SQL: update `tps_birzha_user_sliders` set `user_id` = 2, `tps_birzha_user_sliders`.`updated_at` = 2023-07-24 11:27:17 where `id` = 1) 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(\'update `tps_bir...\', Array, Object(Closure))\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): Illuminate\\Database\\Connection->run(\'update `tps_bir...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(428): Illuminate\\Database\\Connection->affectingStatement(\'update `tps_bir...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2736): Illuminate\\Database\\Connection->update(\'update `tps_bir...\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(264): Illuminate\\Database\\Query\\Builder->update(Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(799): October\\Rain\\Database\\QueryBuilder->update(Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(746): Illuminate\\Database\\Eloquent\\Builder->update(Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(661): Illuminate\\Database\\Eloquent\\Model->performUpdate(Object(October\\Rain\\Database\\Builder))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(320): October\\Rain\\Database\\Model->save(NULL, \'kexJP1PoOAQhvva...\')\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(322): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#15 [internal function]: Backend\\Behaviors\\FormController->update_onSave(\'1\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'update_onSave\', Array)\n#18 [internal function]: Backend\\Classes\\Controller->__call(\'update_onSave\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'update\', Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#58 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#59 {main}', '[]', '2023-07-24 11:27:17', '2023-07-24 11:27:17'), (3231, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:28:17', '2023-07-24 11:28:17'), (3232, 'error', 'PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id\' in \'field list\' in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:82\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php(82): PDO->prepare(\'update `tps_bir...\', Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(484): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'update `tps_bir...\')\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}(\'update `tps_bir...\', 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(\'update `tps_bir...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): Illuminate\\Database\\Connection->run(\'update `tps_bir...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(428): Illuminate\\Database\\Connection->affectingStatement(\'update `tps_bir...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2736): Illuminate\\Database\\Connection->update(\'update `tps_bir...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(264): Illuminate\\Database\\Query\\Builder->update(Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(799): October\\Rain\\Database\\QueryBuilder->update(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(746): Illuminate\\Database\\Eloquent\\Builder->update(Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(661): Illuminate\\Database\\Eloquent\\Model->performUpdate(Object(October\\Rain\\Database\\Builder))\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(320): October\\Rain\\Database\\Model->save(NULL, \'FXehMCf4PnfUZYl...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(322): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#18 [internal function]: Backend\\Behaviors\\FormController->update_onSave(\'1\')\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'update_onSave\', Array)\n#21 [internal function]: Backend\\Classes\\Controller->__call(\'update_onSave\', Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'update\', Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#61 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#62 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id\' in \'field list\' 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/PDOConnection.php(87): 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(484): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'update `tps_bir...\')\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}(\'update `tps_bir...\', 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(\'update `tps_bir...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): Illuminate\\Database\\Connection->run(\'update `tps_bir...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(428): Illuminate\\Database\\Connection->affectingStatement(\'update `tps_bir...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2736): Illuminate\\Database\\Connection->update(\'update `tps_bir...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(264): Illuminate\\Database\\Query\\Builder->update(Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(799): October\\Rain\\Database\\QueryBuilder->update(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(746): Illuminate\\Database\\Eloquent\\Builder->update(Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(661): Illuminate\\Database\\Eloquent\\Model->performUpdate(Object(October\\Rain\\Database\\Builder))\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(320): October\\Rain\\Database\\Model->save(NULL, \'FXehMCf4PnfUZYl...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(322): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#18 [internal function]: Backend\\Behaviors\\FormController->update_onSave(\'1\')\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'update_onSave\', Array)\n#21 [internal function]: Backend\\Classes\\Controller->__call(\'update_onSave\', Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'update\', Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#61 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#62 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id\' in \'field list\' (SQL: update `tps_birzha_user_sliders` set `user_id` = 2, `tps_birzha_user_sliders`.`updated_at` = 2023-07-24 11:28:55 where `id` = 1) 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(\'update `tps_bir...\', Array, Object(Closure))\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): Illuminate\\Database\\Connection->run(\'update `tps_bir...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(428): Illuminate\\Database\\Connection->affectingStatement(\'update `tps_bir...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2736): Illuminate\\Database\\Connection->update(\'update `tps_bir...\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(264): Illuminate\\Database\\Query\\Builder->update(Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(799): October\\Rain\\Database\\QueryBuilder->update(Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(746): Illuminate\\Database\\Eloquent\\Builder->update(Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(661): Illuminate\\Database\\Eloquent\\Model->performUpdate(Object(October\\Rain\\Database\\Builder))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(320): October\\Rain\\Database\\Model->save(NULL, \'FXehMCf4PnfUZYl...\')\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(322): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#15 [internal function]: Backend\\Behaviors\\FormController->update_onSave(\'1\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'update_onSave\', Array)\n#18 [internal function]: Backend\\Classes\\Controller->__call(\'update_onSave\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'update\', Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#58 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#59 {main}', '[]', '2023-07-24 11:28:55', '2023-07-24 11:28:55'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (3233, 'error', 'PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id\' in \'field list\' in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:82\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php(82): PDO->prepare(\'update `tps_bir...\', Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(484): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'update `tps_bir...\')\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}(\'update `tps_bir...\', 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(\'update `tps_bir...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): Illuminate\\Database\\Connection->run(\'update `tps_bir...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(428): Illuminate\\Database\\Connection->affectingStatement(\'update `tps_bir...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2736): Illuminate\\Database\\Connection->update(\'update `tps_bir...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(264): Illuminate\\Database\\Query\\Builder->update(Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(799): October\\Rain\\Database\\QueryBuilder->update(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(746): Illuminate\\Database\\Eloquent\\Builder->update(Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(661): Illuminate\\Database\\Eloquent\\Model->performUpdate(Object(October\\Rain\\Database\\Builder))\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(320): October\\Rain\\Database\\Model->save(NULL, \'FXehMCf4PnfUZYl...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(322): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#18 [internal function]: Backend\\Behaviors\\FormController->update_onSave(\'1\')\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'update_onSave\', Array)\n#21 [internal function]: Backend\\Classes\\Controller->__call(\'update_onSave\', Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'update\', Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#61 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#62 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id\' in \'field list\' 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/PDOConnection.php(87): 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(484): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'update `tps_bir...\')\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}(\'update `tps_bir...\', 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(\'update `tps_bir...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): Illuminate\\Database\\Connection->run(\'update `tps_bir...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(428): Illuminate\\Database\\Connection->affectingStatement(\'update `tps_bir...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2736): Illuminate\\Database\\Connection->update(\'update `tps_bir...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(264): Illuminate\\Database\\Query\\Builder->update(Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(799): October\\Rain\\Database\\QueryBuilder->update(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(746): Illuminate\\Database\\Eloquent\\Builder->update(Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(661): Illuminate\\Database\\Eloquent\\Model->performUpdate(Object(October\\Rain\\Database\\Builder))\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(320): October\\Rain\\Database\\Model->save(NULL, \'FXehMCf4PnfUZYl...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(322): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#18 [internal function]: Backend\\Behaviors\\FormController->update_onSave(\'1\')\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'update_onSave\', Array)\n#21 [internal function]: Backend\\Classes\\Controller->__call(\'update_onSave\', Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'update\', Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#61 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#62 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id\' in \'field list\' (SQL: update `tps_birzha_user_sliders` set `user_id` = 2, `tps_birzha_user_sliders`.`updated_at` = 2023-07-24 11:29:07 where `id` = 1) 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(\'update `tps_bir...\', Array, Object(Closure))\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): Illuminate\\Database\\Connection->run(\'update `tps_bir...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(428): Illuminate\\Database\\Connection->affectingStatement(\'update `tps_bir...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2736): Illuminate\\Database\\Connection->update(\'update `tps_bir...\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(264): Illuminate\\Database\\Query\\Builder->update(Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(799): October\\Rain\\Database\\QueryBuilder->update(Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(746): Illuminate\\Database\\Eloquent\\Builder->update(Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(661): Illuminate\\Database\\Eloquent\\Model->performUpdate(Object(October\\Rain\\Database\\Builder))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(320): October\\Rain\\Database\\Model->save(NULL, \'FXehMCf4PnfUZYl...\')\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(322): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#15 [internal function]: Backend\\Behaviors\\FormController->update_onSave(\'1\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'update_onSave\', Array)\n#18 [internal function]: Backend\\Classes\\Controller->__call(\'update_onSave\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'update\', Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#58 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#59 {main}', '[]', '2023-07-24 11:29:07', '2023-07-24 11:29:07'), (3234, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:29:17', '2023-07-24 11:29:17'), (3235, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:30:17', '2023-07-24 11:30:17'), (3236, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:31:19', '2023-07-24 11:31:19'), (3237, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:32:17', '2023-07-24 11:32:17'), (3238, 'error', 'PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id\' in \'field list\' in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:82\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php(82): PDO->prepare(\'update `tps_bir...\', Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(484): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'update `tps_bir...\')\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}(\'update `tps_bir...\', 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(\'update `tps_bir...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): Illuminate\\Database\\Connection->run(\'update `tps_bir...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(428): Illuminate\\Database\\Connection->affectingStatement(\'update `tps_bir...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2736): Illuminate\\Database\\Connection->update(\'update `tps_bir...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(264): Illuminate\\Database\\Query\\Builder->update(Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(799): October\\Rain\\Database\\QueryBuilder->update(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(746): Illuminate\\Database\\Eloquent\\Builder->update(Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(661): Illuminate\\Database\\Eloquent\\Model->performUpdate(Object(October\\Rain\\Database\\Builder))\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(320): October\\Rain\\Database\\Model->save(NULL, \'oH1yTMceW6etMg6...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(322): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#18 [internal function]: Backend\\Behaviors\\FormController->update_onSave(\'1\')\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'update_onSave\', Array)\n#21 [internal function]: Backend\\Classes\\Controller->__call(\'update_onSave\', Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'update\', Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#61 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#62 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id\' in \'field list\' 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/PDOConnection.php(87): 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(484): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'update `tps_bir...\')\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}(\'update `tps_bir...\', 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(\'update `tps_bir...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): Illuminate\\Database\\Connection->run(\'update `tps_bir...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(428): Illuminate\\Database\\Connection->affectingStatement(\'update `tps_bir...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2736): Illuminate\\Database\\Connection->update(\'update `tps_bir...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(264): Illuminate\\Database\\Query\\Builder->update(Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(799): October\\Rain\\Database\\QueryBuilder->update(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(746): Illuminate\\Database\\Eloquent\\Builder->update(Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(661): Illuminate\\Database\\Eloquent\\Model->performUpdate(Object(October\\Rain\\Database\\Builder))\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(320): October\\Rain\\Database\\Model->save(NULL, \'oH1yTMceW6etMg6...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(322): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#18 [internal function]: Backend\\Behaviors\\FormController->update_onSave(\'1\')\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'update_onSave\', Array)\n#21 [internal function]: Backend\\Classes\\Controller->__call(\'update_onSave\', Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'update\', Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#61 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#62 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'user_id\' in \'field list\' (SQL: update `tps_birzha_user_sliders` set `user_id` = 2, `tps_birzha_user_sliders`.`updated_at` = 2023-07-24 11:32:55 where `id` = 1) 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(\'update `tps_bir...\', Array, Object(Closure))\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(495): Illuminate\\Database\\Connection->run(\'update `tps_bir...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(428): Illuminate\\Database\\Connection->affectingStatement(\'update `tps_bir...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2736): Illuminate\\Database\\Connection->update(\'update `tps_bir...\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(264): Illuminate\\Database\\Query\\Builder->update(Array)\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(799): October\\Rain\\Database\\QueryBuilder->update(Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(746): Illuminate\\Database\\Eloquent\\Builder->update(Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(661): Illuminate\\Database\\Eloquent\\Model->performUpdate(Object(October\\Rain\\Database\\Builder))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(320): October\\Rain\\Database\\Model->save(NULL, \'oH1yTMceW6etMg6...\')\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(322): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#15 [internal function]: Backend\\Behaviors\\FormController->update_onSave(\'1\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'update_onSave\', Array)\n#18 [internal function]: Backend\\Classes\\Controller->__call(\'update_onSave\', Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'update\', Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/user...\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#58 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#59 {main}', '[]', '2023-07-24 11:32:56', '2023-07-24 11:32:56'), (3239, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:33:21', '2023-07-24 11:33:21'), (3240, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:34:49', '2023-07-24 11:34:49'), (3241, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:45:29', '2023-07-24 11:45:29'), (3242, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:46:21', '2023-07-24 11:46:21'), (3243, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:47:19', '2023-07-24 11:47:19'), (3244, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:48:19', '2023-07-24 11:48:19'), (3245, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:49:19', '2023-07-24 11:49:19'), (3246, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:50:19', '2023-07-24 11:50:19'), (3247, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:51:19', '2023-07-24 11:51:19'), (3248, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:52:19', '2023-07-24 11:52:19'), (3249, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:53:21', '2023-07-24 11:53:21'), (3250, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:54:20', '2023-07-24 11:54:20'), (3251, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:55:19', '2023-07-24 11:55:19'), (3252, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:56:19', '2023-07-24 11:56:19'), (3253, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:57:20', '2023-07-24 11:57:20'), (3254, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:58:22', '2023-07-24 11:58:22'), (3255, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 11:59:22', '2023-07-24 11:59:22'), (3256, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:00:22', '2023-07-24 12:00:22'), (3257, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:01:22', '2023-07-24 12:01:22'), (3258, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:02:22', '2023-07-24 12:02:22'), (3259, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:03:22', '2023-07-24 12:03:22'), (3260, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:04:22', '2023-07-24 12:04:22'), (3261, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:05:22', '2023-07-24 12:05:22'), (3262, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:06:22', '2023-07-24 12:06:22'), (3263, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:07:22', '2023-07-24 12:07:22'), (3264, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:08:24', '2023-07-24 12:08:24'), (3265, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:09:23', '2023-07-24 12:09:23'), (3266, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:10:23', '2023-07-24 12:10:23'), (3267, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:11:23', '2023-07-24 12:11:23'), (3268, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:12:23', '2023-07-24 12:12:23'), (3269, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:13:22', '2023-07-24 12:13:22'), (3270, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:14:22', '2023-07-24 12:14:22'), (3271, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:15:22', '2023-07-24 12:15:22'), (3272, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:16:22', '2023-07-24 12:16:22'), (3273, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:17:22', '2023-07-24 12:17:22'), (3274, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:18:22', '2023-07-24 12:18:22'), (3275, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:19:22', '2023-07-24 12:19:22'), (3276, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:20:22', '2023-07-24 12:20:22'), (3277, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:21:23', '2023-07-24 12:21:23'), (3278, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:22:23', '2023-07-24 12:22:23'), (3279, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:23:23', '2023-07-24 12:23:23'), (3280, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:24:22', '2023-07-24 12:24:22'), (3281, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:25:22', '2023-07-24 12:25:22'), (3282, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:26:22', '2023-07-24 12:26:22'), (3283, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:27:22', '2023-07-24 12:27:22'), (3284, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:28:23', '2023-07-24 12:28:23'), (3285, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:29:23', '2023-07-24 12:29:23'), (3286, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:30:23', '2023-07-24 12:30:23'), (3287, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:31:23', '2023-07-24 12:31:23'), (3288, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:32:23', '2023-07-24 12:32:23'), (3289, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:33:23', '2023-07-24 12:33:23'), (3290, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:34:23', '2023-07-24 12:34:23'), (3291, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:35:23', '2023-07-24 12:35:23'), (3292, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:36:24', '2023-07-24 12:36:24'), (3293, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:37:23', '2023-07-24 12:37:23'), (3294, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:38:23', '2023-07-24 12:38:23'), (3295, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:39:24', '2023-07-24 12:39:24'), (3296, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:40:24', '2023-07-24 12:40:24'), (3297, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:41:23', '2023-07-24 12:41:23'), (3298, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:42:23', '2023-07-24 12:42:23'), (3299, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:43:23', '2023-07-24 12:43:23'), (3300, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:44:23', '2023-07-24 12:44:23'), (3301, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:45:23', '2023-07-24 12:45:23'), (3302, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:46:23', '2023-07-24 12:46:23'), (3303, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:47:23', '2023-07-24 12:47:23'), (3304, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:48:24', '2023-07-24 12:48:24'), (3305, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:49:23', '2023-07-24 12:49:23'), (3306, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:50:23', '2023-07-24 12:50:23'), (3307, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:51:23', '2023-07-24 12:51:23'), (3308, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:52:23', '2023-07-24 12:52:23'), (3309, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:53:23', '2023-07-24 12:53:23'), (3310, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:54:23', '2023-07-24 12:54:23'), (3311, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:55:23', '2023-07-24 12:55:23'), (3312, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:56:23', '2023-07-24 12:56:23'), (3313, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:57:24', '2023-07-24 12:57:24'), (3314, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:58:23', '2023-07-24 12:58:23'), (3315, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 12:59:23', '2023-07-24 12:59:23'), (3316, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:00:23', '2023-07-24 13:00:23'), (3317, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:01:23', '2023-07-24 13:01:23'), (3318, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:02:23', '2023-07-24 13:02:23'), (3319, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:03:23', '2023-07-24 13:03:23'), (3320, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:04:24', '2023-07-24 13:04:24'), (3321, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:05:24', '2023-07-24 13:05:24'), (3322, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:06:24', '2023-07-24 13:06:24'), (3323, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:07:24', '2023-07-24 13:07:24'), (3324, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:08:24', '2023-07-24 13:08:24'), (3325, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:09:24', '2023-07-24 13:09:24'), (3326, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:10:24', '2023-07-24 13:10:24'), (3327, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:11:24', '2023-07-24 13:11:24'), (3328, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:12:23', '2023-07-24 13:12:23'), (3329, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:13:24', '2023-07-24 13:13:24'), (3330, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:14:24', '2023-07-24 13:14:24'), (3331, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:15:24', '2023-07-24 13:15:24'), (3332, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:16:24', '2023-07-24 13:16:24'), (3333, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:17:24', '2023-07-24 13:17:24'), (3334, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:18:24', '2023-07-24 13:18:24'), (3335, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:19:24', '2023-07-24 13:19:24'), (3336, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:20:24', '2023-07-24 13:20:24'), (3337, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:21:24', '2023-07-24 13:21:24'), (3338, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:22:24', '2023-07-24 13:22:24'), (3339, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:23:24', '2023-07-24 13:23:24'), (3340, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:24:24', '2023-07-24 13:24:24'), (3341, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:25:24', '2023-07-24 13:25:24'), (3342, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:26:24', '2023-07-24 13:26:24'), (3343, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:27:24', '2023-07-24 13:27:24'), (3344, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:28:23', '2023-07-24 13:28:23'), (3345, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:29:23', '2023-07-24 13:29:23'), (3346, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:30:23', '2023-07-24 13:30:23'), (3347, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:31:23', '2023-07-24 13:31:23'), (3348, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:32:23', '2023-07-24 13:32:23'), (3349, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:33:23', '2023-07-24 13:33:23'), (3350, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:34:23', '2023-07-24 13:34:23'), (3351, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:35:23', '2023-07-24 13:35:23'), (3352, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:36:23', '2023-07-24 13:36:23'), (3353, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:37:23', '2023-07-24 13:37:23'), (3354, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:38:23', '2023-07-24 13:38:23'), (3355, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:39:23', '2023-07-24 13:39:23'), (3356, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:40:23', '2023-07-24 13:40:23'), (3357, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:41:23', '2023-07-24 13:41:23'), (3358, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:42:23', '2023-07-24 13:42:23'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (3359, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:43:24', '2023-07-24 13:43:24'), (3360, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:44:24', '2023-07-24 13:44:24'), (3361, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:45:24', '2023-07-24 13:45:24'), (3362, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:46:24', '2023-07-24 13:46:24'), (3363, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:47:24', '2023-07-24 13:47:24'), (3364, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:48:24', '2023-07-24 13:48:24'), (3365, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:49:24', '2023-07-24 13:49:24'), (3366, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:50:24', '2023-07-24 13:50:24'), (3367, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:51:24', '2023-07-24 13:51:24'), (3368, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:52:24', '2023-07-24 13:52:24'), (3369, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:53:24', '2023-07-24 13:53:24'), (3370, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:54:24', '2023-07-24 13:54:24'), (3371, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:55:24', '2023-07-24 13:55:24'), (3372, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:56:24', '2023-07-24 13:56:24'), (3373, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:57:24', '2023-07-24 13:57:24'), (3374, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:58:24', '2023-07-24 13:58:24'), (3375, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 13:59:24', '2023-07-24 13:59:24'), (3376, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:00:24', '2023-07-24 14:00:24'), (3377, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:01:24', '2023-07-24 14:01:24'), (3378, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:02:24', '2023-07-24 14:02:24'), (3379, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:03:24', '2023-07-24 14:03:24'), (3380, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:04:24', '2023-07-24 14:04:24'), (3381, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:05:24', '2023-07-24 14:05:24'), (3382, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:06:24', '2023-07-24 14:06:24'), (3383, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:07:24', '2023-07-24 14:07:24'), (3384, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:08:24', '2023-07-24 14:08:24'), (3385, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:09:24', '2023-07-24 14:09:24'), (3386, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:10:24', '2023-07-24 14:10:24'), (3387, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:11:24', '2023-07-24 14:11:24'), (3388, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:12:24', '2023-07-24 14:12:24'), (3389, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:13:24', '2023-07-24 14:13:24'), (3390, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:14:24', '2023-07-24 14:14:24'), (3391, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:15:24', '2023-07-24 14:15:24'), (3392, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:16:24', '2023-07-24 14:16:24'), (3393, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:17:24', '2023-07-24 14:17:24'), (3394, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:18:24', '2023-07-24 14:18:24'), (3395, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:19:24', '2023-07-24 14:19:24'), (3396, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:20:24', '2023-07-24 14:20:24'), (3397, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:21:24', '2023-07-24 14:21:24'), (3398, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:22:24', '2023-07-24 14:22:24'), (3399, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:23:24', '2023-07-24 14:23:24'), (3400, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:24:24', '2023-07-24 14:24:24'), (3401, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:25:24', '2023-07-24 14:25:24'), (3402, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:26:24', '2023-07-24 14:26:24'), (3403, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:27:24', '2023-07-24 14:27:24'), (3404, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:28:24', '2023-07-24 14:28:24'), (3405, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:29:24', '2023-07-24 14:29:24'), (3406, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:30:24', '2023-07-24 14:30:24'), (3407, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:31:24', '2023-07-24 14:31:24'), (3408, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:32:24', '2023-07-24 14:32:24'), (3409, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:33:24', '2023-07-24 14:33:24'), (3410, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:34:24', '2023-07-24 14:34:24'), (3411, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:35:24', '2023-07-24 14:35:24'), (3412, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:36:24', '2023-07-24 14:36:24'), (3413, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:37:24', '2023-07-24 14:37:24'), (3414, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:38:24', '2023-07-24 14:38:24'), (3415, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:39:24', '2023-07-24 14:39:24'), (3416, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:40:24', '2023-07-24 14:40:24'), (3417, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:41:24', '2023-07-24 14:41:24'), (3418, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:42:24', '2023-07-24 14:42:24'), (3419, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:43:24', '2023-07-24 14:43:24'), (3420, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:44:24', '2023-07-24 14:44:24'), (3421, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:45:24', '2023-07-24 14:45:24'), (3422, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:46:24', '2023-07-24 14:46:24'), (3423, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:47:24', '2023-07-24 14:47:24'), (3424, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:48:24', '2023-07-24 14:48:24'), (3425, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:49:24', '2023-07-24 14:49:24'), (3426, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:50:24', '2023-07-24 14:50:24'), (3427, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:51:24', '2023-07-24 14:51:24'), (3428, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:52:24', '2023-07-24 14:52:24'), (3429, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:53:24', '2023-07-24 14:53:24'), (3430, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:54:24', '2023-07-24 14:54:24'), (3431, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:55:24', '2023-07-24 14:55:24'), (3432, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:56:24', '2023-07-24 14:56:24'), (3433, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:57:24', '2023-07-24 14:57:24'), (3434, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:58:24', '2023-07-24 14:58:24'), (3435, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 14:59:24', '2023-07-24 14:59:24'), (3436, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:00:24', '2023-07-24 15:00:24'), (3437, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:01:24', '2023-07-24 15:01:24'), (3438, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:02:24', '2023-07-24 15:02:24'), (3439, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:03:24', '2023-07-24 15:03:24'), (3440, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:04:24', '2023-07-24 15:04:24'), (3441, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:05:24', '2023-07-24 15:05:24'), (3442, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:06:24', '2023-07-24 15:06:24'), (3443, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:07:24', '2023-07-24 15:07:24'), (3444, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:08:24', '2023-07-24 15:08:24'), (3445, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:09:24', '2023-07-24 15:09:24'), (3446, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:10:24', '2023-07-24 15:10:24'), (3447, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:11:24', '2023-07-24 15:11:24'), (3448, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:12:24', '2023-07-24 15:12:24'), (3449, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:13:24', '2023-07-24 15:13:24'), (3450, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:14:24', '2023-07-24 15:14:24'), (3451, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:15:24', '2023-07-24 15:15:24'), (3452, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:16:24', '2023-07-24 15:16:24'), (3453, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:17:24', '2023-07-24 15:17:24'), (3454, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:18:24', '2023-07-24 15:18:24'), (3455, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:19:24', '2023-07-24 15:19:24'), (3456, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:20:24', '2023-07-24 15:20:24'), (3457, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:21:24', '2023-07-24 15:21:24'), (3458, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:22:24', '2023-07-24 15:22:24'), (3459, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:23:24', '2023-07-24 15:23:24'), (3460, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:24:24', '2023-07-24 15:24:24'), (3461, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:25:24', '2023-07-24 15:25:24'), (3462, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:26:24', '2023-07-24 15:26:24'), (3463, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:27:25', '2023-07-24 15:27:25'), (3464, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:28:25', '2023-07-24 15:28:25'), (3465, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:29:25', '2023-07-24 15:29:25'), (3466, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:30:24', '2023-07-24 15:30:24'), (3467, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:31:25', '2023-07-24 15:31:25'), (3468, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:32:25', '2023-07-24 15:32:25'), (3469, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:33:26', '2023-07-24 15:33:26'), (3470, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:34:26', '2023-07-24 15:34:26'), (3471, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:35:26', '2023-07-24 15:35:26'), (3472, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:36:26', '2023-07-24 15:36:26'), (3473, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:37:25', '2023-07-24 15:37:25'), (3474, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:38:25', '2023-07-24 15:38:25'), (3475, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:39:25', '2023-07-24 15:39:25'), (3476, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:40:25', '2023-07-24 15:40:25'), (3477, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:41:24', '2023-07-24 15:41:24'), (3478, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:42:24', '2023-07-24 15:42:24'), (3479, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:43:24', '2023-07-24 15:43:24'), (3480, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:44:24', '2023-07-24 15:44:24'), (3481, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:45:24', '2023-07-24 15:45:24'), (3482, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:46:24', '2023-07-24 15:46:24'), (3483, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:47:24', '2023-07-24 15:47:24'), (3484, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:48:24', '2023-07-24 15:48:24'), (3485, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:49:24', '2023-07-24 15:49:24'), (3486, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:50:24', '2023-07-24 15:50:24'), (3487, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:51:24', '2023-07-24 15:51:24'), (3488, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:52:24', '2023-07-24 15:52:24'), (3489, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:53:24', '2023-07-24 15:53:24'), (3490, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:54:24', '2023-07-24 15:54:24'), (3491, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:55:24', '2023-07-24 15:55:24'), (3492, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:56:24', '2023-07-24 15:56:24'), (3493, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:57:24', '2023-07-24 15:57:24'), (3494, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:58:24', '2023-07-24 15:58:24'), (3495, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 15:59:24', '2023-07-24 15:59:24'), (3496, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:00:24', '2023-07-24 16:00:24'), (3497, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:01:24', '2023-07-24 16:01:24'), (3498, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:02:24', '2023-07-24 16:02:24'), (3499, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:03:24', '2023-07-24 16:03:24'), (3500, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:04:24', '2023-07-24 16:04:24'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (3501, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:05:24', '2023-07-24 16:05:24'), (3502, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:06:24', '2023-07-24 16:06:24'), (3503, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:07:24', '2023-07-24 16:07:24'), (3504, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:08:24', '2023-07-24 16:08:24'), (3505, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:09:24', '2023-07-24 16:09:24'), (3506, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:10:24', '2023-07-24 16:10:24'), (3507, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:11:24', '2023-07-24 16:11:24'), (3508, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:12:24', '2023-07-24 16:12:24'), (3509, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:13:24', '2023-07-24 16:13:24'), (3510, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:14:24', '2023-07-24 16:14:24'), (3511, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:15:24', '2023-07-24 16:15:24'), (3512, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:16:24', '2023-07-24 16:16:24'), (3513, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:17:24', '2023-07-24 16:17:24'), (3514, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:18:24', '2023-07-24 16:18:24'), (3515, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:19:24', '2023-07-24 16:19:24'), (3516, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:20:24', '2023-07-24 16:20:24'), (3517, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:21:24', '2023-07-24 16:21:24'), (3518, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:22:24', '2023-07-24 16:22:24'), (3519, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:23:24', '2023-07-24 16:23:24'), (3520, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:24:24', '2023-07-24 16:24:24'), (3521, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:25:24', '2023-07-24 16:25:24'), (3522, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:26:24', '2023-07-24 16:26:24'), (3523, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:27:24', '2023-07-24 16:27:24'), (3524, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:28:24', '2023-07-24 16:28:24'), (3525, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:29:24', '2023-07-24 16:29:24'), (3526, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:30:24', '2023-07-24 16:30:24'), (3527, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:31:24', '2023-07-24 16:31:24'), (3528, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:32:24', '2023-07-24 16:32:24'), (3529, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:33:24', '2023-07-24 16:33:24'), (3530, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:34:24', '2023-07-24 16:34:24'), (3531, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:35:24', '2023-07-24 16:35:24'), (3532, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:36:24', '2023-07-24 16:36:24'), (3533, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:37:24', '2023-07-24 16:37:24'), (3534, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:38:24', '2023-07-24 16:38:24'), (3535, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:39:24', '2023-07-24 16:39:24'), (3536, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:40:24', '2023-07-24 16:40:24'), (3537, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:41:24', '2023-07-24 16:41:24'), (3538, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:42:24', '2023-07-24 16:42:24'), (3539, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:43:24', '2023-07-24 16:43:24'), (3540, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:44:24', '2023-07-24 16:44:24'), (3541, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:45:24', '2023-07-24 16:45:24'), (3542, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:46:24', '2023-07-24 16:46:24'), (3543, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:47:24', '2023-07-24 16:47:24'), (3544, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:48:24', '2023-07-24 16:48:24'), (3545, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:49:24', '2023-07-24 16:49:24'), (3546, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:50:24', '2023-07-24 16:50:24'), (3547, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:51:24', '2023-07-24 16:51:24'), (3548, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:52:24', '2023-07-24 16:52:24'), (3549, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:53:24', '2023-07-24 16:53:24'), (3550, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:54:24', '2023-07-24 16:54:24'), (3551, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:55:24', '2023-07-24 16:55:24'), (3552, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:56:24', '2023-07-24 16:56:24'), (3553, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:57:24', '2023-07-24 16:57:24'), (3554, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:58:24', '2023-07-24 16:58:24'), (3555, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 16:59:24', '2023-07-24 16:59:24'), (3556, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:00:24', '2023-07-24 17:00:24'), (3557, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:01:24', '2023-07-24 17:01:24'), (3558, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:02:24', '2023-07-24 17:02:24'), (3559, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:03:24', '2023-07-24 17:03:24'), (3560, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:04:24', '2023-07-24 17:04:24'), (3561, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:05:24', '2023-07-24 17:05:24'), (3562, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:06:24', '2023-07-24 17:06:24'), (3563, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:07:24', '2023-07-24 17:07:24'), (3564, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:08:24', '2023-07-24 17:08:24'), (3565, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:09:24', '2023-07-24 17:09:24'), (3566, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:10:24', '2023-07-24 17:10:24'), (3567, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:11:24', '2023-07-24 17:11:24'), (3568, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:12:24', '2023-07-24 17:12:24'), (3569, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:13:24', '2023-07-24 17:13:24'), (3570, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:14:24', '2023-07-24 17:14:24'), (3571, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:15:24', '2023-07-24 17:15:24'), (3572, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:16:24', '2023-07-24 17:16:24'), (3573, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:17:24', '2023-07-24 17:17:24'), (3574, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:18:24', '2023-07-24 17:18:24'), (3575, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:19:24', '2023-07-24 17:19:24'), (3576, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:20:24', '2023-07-24 17:20:24'), (3577, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:21:24', '2023-07-24 17:21:24'), (3578, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:22:24', '2023-07-24 17:22:24'), (3579, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:23:24', '2023-07-24 17:23:24'), (3580, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:24:24', '2023-07-24 17:24:24'), (3581, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:25:24', '2023-07-24 17:25:24'), (3582, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:26:24', '2023-07-24 17:26:24'), (3583, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:27:24', '2023-07-24 17:27:24'), (3584, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:28:24', '2023-07-24 17:28:24'), (3585, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:29:24', '2023-07-24 17:29:24'), (3586, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:30:24', '2023-07-24 17:30:24'), (3587, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:31:24', '2023-07-24 17:31:24'), (3588, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:32:24', '2023-07-24 17:32:24'), (3589, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:33:24', '2023-07-24 17:33:24'), (3590, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:34:24', '2023-07-24 17:34:24'), (3591, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:35:24', '2023-07-24 17:35:24'), (3592, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:36:24', '2023-07-24 17:36:24'), (3593, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:37:24', '2023-07-24 17:37:24'), (3594, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:38:24', '2023-07-24 17:38:24'), (3595, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:39:24', '2023-07-24 17:39:24'), (3596, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:40:24', '2023-07-24 17:40:24'), (3597, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:41:24', '2023-07-24 17:41:24'), (3598, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:42:24', '2023-07-24 17:42:24'), (3599, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:43:24', '2023-07-24 17:43:24'), (3600, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:44:24', '2023-07-24 17:44:24'), (3601, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:45:24', '2023-07-24 17:45:24'), (3602, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:46:24', '2023-07-24 17:46:24'), (3603, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:47:24', '2023-07-24 17:47:24'), (3604, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:48:24', '2023-07-24 17:48:24'), (3605, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:49:24', '2023-07-24 17:49:24'), (3606, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:50:24', '2023-07-24 17:50:24'), (3607, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:51:24', '2023-07-24 17:51:24'), (3608, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:52:24', '2023-07-24 17:52:24'), (3609, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:53:24', '2023-07-24 17:53:24'), (3610, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:54:24', '2023-07-24 17:54:24'), (3611, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:55:24', '2023-07-24 17:55:24'), (3612, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:56:24', '2023-07-24 17:56:24'), (3613, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:57:24', '2023-07-24 17:57:24'), (3614, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:58:24', '2023-07-24 17:58:24'), (3615, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 17:59:24', '2023-07-24 17:59:24'), (3616, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:00:24', '2023-07-24 18:00:24'), (3617, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:01:24', '2023-07-24 18:01:24'), (3618, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:02:24', '2023-07-24 18:02:24'), (3619, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:03:24', '2023-07-24 18:03:24'), (3620, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:04:24', '2023-07-24 18:04:24'), (3621, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:05:24', '2023-07-24 18:05:24'), (3622, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:06:24', '2023-07-24 18:06:24'), (3623, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:07:24', '2023-07-24 18:07:24'), (3624, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:08:24', '2023-07-24 18:08:24'), (3625, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:09:24', '2023-07-24 18:09:24'), (3626, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:10:24', '2023-07-24 18:10:24'), (3627, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:11:24', '2023-07-24 18:11:24'), (3628, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:12:24', '2023-07-24 18:12:24'), (3629, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:13:24', '2023-07-24 18:13:24'), (3630, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:14:24', '2023-07-24 18:14:24'), (3631, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:15:24', '2023-07-24 18:15:24'), (3632, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:16:24', '2023-07-24 18:16:24'), (3633, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:17:24', '2023-07-24 18:17:24'), (3634, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:18:24', '2023-07-24 18:18:24'), (3635, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:19:24', '2023-07-24 18:19:24'), (3636, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:20:24', '2023-07-24 18:20:24'), (3637, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:21:24', '2023-07-24 18:21:24'), (3638, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:22:24', '2023-07-24 18:22:24'), (3639, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:23:24', '2023-07-24 18:23:24'), (3640, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:24:24', '2023-07-24 18:24:24'), (3641, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:25:24', '2023-07-24 18:25:24'), (3642, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:26:24', '2023-07-24 18:26:24'), (3643, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:27:24', '2023-07-24 18:27:24'), (3644, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:28:24', '2023-07-24 18:28:24'), (3645, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:29:24', '2023-07-24 18:29:24'), (3646, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:30:24', '2023-07-24 18:30:24'), (3647, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:31:24', '2023-07-24 18:31:24'), (3648, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:32:24', '2023-07-24 18:32:24'), (3649, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:33:24', '2023-07-24 18:33:24'), (3650, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:34:24', '2023-07-24 18:34:24'), (3651, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:35:25', '2023-07-24 18:35:25'), (3652, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:36:25', '2023-07-24 18:36:25'), (3653, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:37:25', '2023-07-24 18:37:25'), (3654, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:38:25', '2023-07-24 18:38:25'), (3655, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:39:25', '2023-07-24 18:39:25'), (3656, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:40:25', '2023-07-24 18:40:25'), (3657, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:41:25', '2023-07-24 18:41:25'), (3658, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:42:25', '2023-07-24 18:42:25'), (3659, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:43:25', '2023-07-24 18:43:25'), (3660, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:44:25', '2023-07-24 18:44:25'), (3661, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:45:25', '2023-07-24 18:45:25'), (3662, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:46:25', '2023-07-24 18:46:25'), (3663, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:47:25', '2023-07-24 18:47:25'), (3664, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:48:25', '2023-07-24 18:48:25'), (3665, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:49:25', '2023-07-24 18:49:25'), (3666, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:50:25', '2023-07-24 18:50:25'), (3667, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:51:25', '2023-07-24 18:51:25'), (3668, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:52:25', '2023-07-24 18:52:25'), (3669, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:53:25', '2023-07-24 18:53:25'), (3670, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:54:25', '2023-07-24 18:54:25'), (3671, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:55:25', '2023-07-24 18:55:25'), (3672, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:56:25', '2023-07-24 18:56:25'), (3673, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:57:25', '2023-07-24 18:57:25'), (3674, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:58:25', '2023-07-24 18:58:25'), (3675, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 18:59:25', '2023-07-24 18:59:25'), (3676, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 19:00:25', '2023-07-24 19:00:25'), (3677, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 19:01:25', '2023-07-24 19:01:25'), (3678, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 19:02:25', '2023-07-24 19:02:25'), (3679, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 19:03:25', '2023-07-24 19:03:25'), (3680, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 19:04:25', '2023-07-24 19:04:25'), (3681, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 19:05:25', '2023-07-24 19:05:25'), (3682, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 19:06:25', '2023-07-24 19:06:25'), (3683, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 19:07:25', '2023-07-24 19:07:25'), (3684, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 19:08:25', '2023-07-24 19:08:25'), (3685, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 19:09:37', '2023-07-24 19:09:37'), (3686, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 19:10:25', '2023-07-24 19:10:25'), (3687, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-24 19:11:26', '2023-07-24 19:11:26'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (3688, 'error', 'October\\Rain\\Exception\\SystemException: Class name is not registered for the component \"notifications\". Check the component plugin. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/ComponentManager.php:204\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(1431): Cms\\Classes\\ComponentManager->makeComponent(\'notifications\', Object(Cms64c2ac5233489151561452_314241f167cbfd9f8aa864429c6d7be4Class), Array, false)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(653): Cms\\Classes\\Controller->addComponent(\'notifications\', \'notifications\', Array, true)\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(334): Cms\\Classes\\Controller->initComponents()\n#3 /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#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/CmsController.php(50): Cms\\Classes\\Controller->run(\'/\')\n#5 /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#6 /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#7 /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#8 /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#9 /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#10 /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#11 /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#12 /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#13 /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#14 /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#15 /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#16 /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#17 /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#18 /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#19 /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#20 /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#21 /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#22 /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#23 /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#24 /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#25 /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#26 /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#27 /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#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#39 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#40 {main}', '[]', '2023-07-27 17:41:38', '2023-07-27 17:41:38'), (3689, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:41:51', '2023-07-27 17:41:51'), (3690, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:42:49', '2023-07-27 17:42:49'), (3691, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:43:48', '2023-07-27 17:43:48'), (3692, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:44:48', '2023-07-27 17:44:48'), (3693, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:45:48', '2023-07-27 17:45:48'), (3694, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:46:48', '2023-07-27 17:46:48'), (3695, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:47:48', '2023-07-27 17:47:48'), (3696, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:48:48', '2023-07-27 17:48:48'), (3697, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:49:48', '2023-07-27 17:49:48'), (3698, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:50:48', '2023-07-27 17:50:48'), (3699, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:51:48', '2023-07-27 17:51:48'), (3700, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:52:48', '2023-07-27 17:52:48'), (3701, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:53:48', '2023-07-27 17:53:48'), (3702, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:54:48', '2023-07-27 17:54:48'), (3703, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:55:48', '2023-07-27 17:55:48'), (3704, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:56:48', '2023-07-27 17:56:48'), (3705, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:57:48', '2023-07-27 17:57:48'), (3706, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:58:48', '2023-07-27 17:58:48'), (3707, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 17:59:48', '2023-07-27 17:59:48'), (3708, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:00:48', '2023-07-27 18:00:48'), (3709, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:01:48', '2023-07-27 18:01:48'), (3710, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:02:48', '2023-07-27 18:02:48'), (3711, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:03:48', '2023-07-27 18:03:48'), (3712, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:04:48', '2023-07-27 18:04:48'), (3713, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:05:48', '2023-07-27 18:05:48'), (3714, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:06:48', '2023-07-27 18:06:48'), (3715, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:07:48', '2023-07-27 18:07:48'), (3716, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:08:48', '2023-07-27 18:08:48'), (3717, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:09:48', '2023-07-27 18:09:48'), (3718, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:10:48', '2023-07-27 18:10:48'), (3719, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:11:48', '2023-07-27 18:11:48'), (3720, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:12:48', '2023-07-27 18:12:48'), (3721, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:13:48', '2023-07-27 18:13:48'), (3722, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:14:48', '2023-07-27 18:14:48'), (3723, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:15:48', '2023-07-27 18:15:48'), (3724, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:16:48', '2023-07-27 18:16:48'), (3725, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:17:48', '2023-07-27 18:17:48'), (3726, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:18:48', '2023-07-27 18:18:48'), (3727, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:19:48', '2023-07-27 18:19:48'), (3728, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:20:48', '2023-07-27 18:20:48'), (3729, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:21:48', '2023-07-27 18:21:48'), (3730, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:22:48', '2023-07-27 18:22:48'), (3731, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:23:48', '2023-07-27 18:23:48'), (3732, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:24:48', '2023-07-27 18:24:48'), (3733, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:25:48', '2023-07-27 18:25:48'), (3734, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:26:48', '2023-07-27 18:26:48'), (3735, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:27:48', '2023-07-27 18:27:48'), (3736, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:28:48', '2023-07-27 18:28:48'), (3737, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:29:48', '2023-07-27 18:29:48'), (3738, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:30:48', '2023-07-27 18:30:48'), (3739, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:31:48', '2023-07-27 18:31:48'), (3740, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:32:48', '2023-07-27 18:32:48'), (3741, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:33:48', '2023-07-27 18:33:48'), (3742, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:34:49', '2023-07-27 18:34:49'), (3743, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:35:48', '2023-07-27 18:35:48'), (3744, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:36:48', '2023-07-27 18:36:48'), (3745, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:37:48', '2023-07-27 18:37:48'), (3746, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:38:48', '2023-07-27 18:38:48'), (3747, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:39:48', '2023-07-27 18:39:48'), (3748, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:40:48', '2023-07-27 18:40:48'), (3749, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:41:48', '2023-07-27 18:41:48'), (3750, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:42:48', '2023-07-27 18:42:48'), (3751, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:43:48', '2023-07-27 18:43:48'), (3752, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:44:48', '2023-07-27 18:44:48'), (3753, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:45:48', '2023-07-27 18:45:48'), (3754, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:46:48', '2023-07-27 18:46:48'), (3755, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:47:48', '2023-07-27 18:47:48'), (3756, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:48:48', '2023-07-27 18:48:48'), (3757, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:49:48', '2023-07-27 18:49:48'), (3758, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:50:48', '2023-07-27 18:50:48'), (3759, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:51:48', '2023-07-27 18:51:48'), (3760, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:52:48', '2023-07-27 18:52:48'), (3761, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:53:48', '2023-07-27 18:53:48'), (3762, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:54:48', '2023-07-27 18:54:48'), (3763, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:55:48', '2023-07-27 18:55:48'), (3764, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:56:48', '2023-07-27 18:56:48'), (3765, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:57:48', '2023-07-27 18:57:48'), (3766, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:58:48', '2023-07-27 18:58:48'), (3767, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 18:59:48', '2023-07-27 18:59:48'), (3768, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:00:48', '2023-07-27 19:00:48'), (3769, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:01:48', '2023-07-27 19:01:48'), (3770, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:02:48', '2023-07-27 19:02:48'), (3771, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:03:48', '2023-07-27 19:03:48'), (3772, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:04:48', '2023-07-27 19:04:48'), (3773, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:05:48', '2023-07-27 19:05:48'), (3774, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:06:48', '2023-07-27 19:06:48'), (3775, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:07:48', '2023-07-27 19:07:48'), (3776, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:08:48', '2023-07-27 19:08:48'), (3777, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:09:48', '2023-07-27 19:09:48'), (3778, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:10:48', '2023-07-27 19:10:48'), (3779, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:11:48', '2023-07-27 19:11:48'), (3780, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:12:48', '2023-07-27 19:12:48'), (3781, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:13:48', '2023-07-27 19:13:48'), (3782, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:14:48', '2023-07-27 19:14:48'), (3783, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:15:48', '2023-07-27 19:15:48'), (3784, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:16:48', '2023-07-27 19:16:48'), (3785, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:17:48', '2023-07-27 19:17:48'), (3786, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:18:48', '2023-07-27 19:18:48'), (3787, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:19:49', '2023-07-27 19:19:49'), (3788, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:20:48', '2023-07-27 19:20:48'), (3789, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:21:48', '2023-07-27 19:21:48'), (3790, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:22:48', '2023-07-27 19:22:48'), (3791, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:23:48', '2023-07-27 19:23:48'), (3792, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:24:48', '2023-07-27 19:24:48'), (3793, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:25:48', '2023-07-27 19:25:48'), (3794, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:26:48', '2023-07-27 19:26:48'), (3795, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:27:48', '2023-07-27 19:27:48'), (3796, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:28:48', '2023-07-27 19:28:48'), (3797, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:29:48', '2023-07-27 19:29:48'), (3798, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:30:49', '2023-07-27 19:30:49'), (3799, 'error', 'PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'richeditor1\' in \'field list\' in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:82\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php(82): PDO->prepare(\'insert into `tp...\', Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(457): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'insert into `tp...\')\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}(\'insert into `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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'Xbhr11JtnbD81f8...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#21 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#24 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/term...\')\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#64 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#65 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'richeditor1\' in \'field list\' 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/PDOConnection.php(87): 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(457): Doctrine\\DBAL\\Driver\\PDOConnection->prepare(\'insert into `tp...\')\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}(\'insert into `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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'Xbhr11JtnbD81f8...\')\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#21 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#24 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/term...\')\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /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#61 /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#62 /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#63 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#64 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#65 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[42S22]: Column not found: 1054 Unknown column \'richeditor1\' in \'field list\' (SQL: insert into `tps_birzha_terms` (`name`, `type`, `richeditor1`) values (About us, about,

sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.sdfsdf biz barada.

)) 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(\'insert into `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(\'insert into `tp...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(416): Illuminate\\Database\\Connection->statement(\'insert into `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert(\'insert into `tp...\', Array)\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2705): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId(Object(October\\Rain\\Database\\QueryBuilder), \'insert into `tp...\', Array, \'id\')\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/QueryBuilder.php(291): Illuminate\\Database\\Query\\Builder->insertGetId(Array, \'id\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1385): October\\Rain\\Database\\QueryBuilder->insertGetId(Array, \'id\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Builder.php(277): Illuminate\\Database\\Eloquent\\Builder->__call(\'insertGetId\', Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(840): October\\Rain\\Database\\Builder->__call(\'insertGetId\', Array)\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(805): Illuminate\\Database\\Eloquent\\Model->insertAndSetId(Object(October\\Rain\\Database\\Builder), Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(668): Illuminate\\Database\\Eloquent\\Model->performInsert(Object(October\\Rain\\Database\\Builder))\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(794): Illuminate\\Database\\Eloquent\\Model->save(Array)\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Model.php(827): October\\Rain\\Database\\Model->saveInternal(Array)\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(252): October\\Rain\\Database\\Model->save(NULL, \'Xbhr11JtnbD81f8...\')\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php(29): Backend\\Behaviors\\FormController->Backend\\Behaviors\\{closure}(Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php(349): Illuminate\\Database\\Connection->transaction(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\DatabaseManager->__call(\'transaction\', Array)\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Behaviors/FormController.php(254): Illuminate\\Support\\Facades\\Facade::__callStatic(\'transaction\', Array)\n#18 [internal function]: Backend\\Behaviors\\FormController->create_onSave()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Extension/ExtendableTrait.php(414): call_user_func_array(Array, Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(184): Backend\\Classes\\Controller->extendableCall(\'create_onSave\', Array)\n#21 [internal function]: Backend\\Classes\\Controller->__call(\'create_onSave\', Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(620): call_user_func_array(Array, Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onSave\')\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'create\', Array)\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'tps/birzha/term...\')\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#28 /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#29 /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#30 /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#31 /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#32 /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#33 /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#34 /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#35 /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#36 /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#37 /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#38 /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#39 /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#40 /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#41 /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#42 /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#43 /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#44 /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#45 /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#46 /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#47 /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#48 /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#49 /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#50 /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#51 /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#52 /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#53 /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#54 /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#55 /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#56 /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#57 /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#58 /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#59 /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#60 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#61 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#62 {main}', '[]', '2023-07-27 19:31:13', '2023-07-27 19:31:13'), (3800, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:31:48', '2023-07-27 19:31:48'), (3801, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:32:49', '2023-07-27 19:32:49'), (3802, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:33:48', '2023-07-27 19:33:48'), (3803, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:34:48', '2023-07-27 19:34:48'), (3804, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:35:49', '2023-07-27 19:35:49'), (3805, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:36:48', '2023-07-27 19:36:48'), (3806, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:37:48', '2023-07-27 19:37:48'), (3807, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:38:48', '2023-07-27 19:38:48'), (3808, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:39:48', '2023-07-27 19:39:48'), (3809, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:40:48', '2023-07-27 19:40:48'), (3810, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:41:48', '2023-07-27 19:41:48'), (3811, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:42:49', '2023-07-27 19:42:49'), (3812, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:43:48', '2023-07-27 19:43:48'), (3813, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:44:48', '2023-07-27 19:44:48'), (3814, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:45:49', '2023-07-27 19:45:49'), (3815, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:46:48', '2023-07-27 19:46:48'), (3816, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:47:48', '2023-07-27 19:47:48'), (3817, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:48:48', '2023-07-27 19:48:48'), (3818, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:49:49', '2023-07-27 19:49:49'), (3819, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:50:48', '2023-07-27 19:50:48'), (3820, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:51:48', '2023-07-27 19:51:48'), (3821, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:52:49', '2023-07-27 19:52:49'), (3822, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:53:48', '2023-07-27 19:53:48'), (3823, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:54:49', '2023-07-27 19:54:49'), (3824, 'error', 'ErrorException: Undefined variable: data in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/ahmadfatoni/apigenerator/controllers/api/BlogPostsApiController.php:54\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/ahmadfatoni/apigenerator/controllers/api/BlogPostsApiController.php(54): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(8, \'Undefined varia...\', \'/Users/tmstore/...\', 54, Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(48): AhmadFatoni\\ApiGenerator\\Controllers\\API\\BlogPostsApiController->getAccounts(Object(Illuminate\\Http\\Request))\n#2 /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(AhmadFatoni\\ApiGenerator\\Controllers\\API\\BlogPostsApiController), \'getAccounts\')\n#3 /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#4 /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#5 /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#6 /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#7 /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#8 /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#9 /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#10 /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#11 /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#12 /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#13 /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#14 /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#15 /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#16 /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#17 /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#18 /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#19 /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#20 /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#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#23 {main}', '[]', '2023-07-27 19:55:42', '2023-07-27 19:55:42'), (3825, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:55:49', '2023-07-27 19:55:49'), (3826, 'error', 'ErrorException: Undefined index: type in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/ahmadfatoni/apigenerator/controllers/api/BlogPostsApiController.php:56\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/ahmadfatoni/apigenerator/controllers/api/BlogPostsApiController.php(56): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(8, \'Undefined index...\', \'/Users/tmstore/...\', 56, Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(48): AhmadFatoni\\ApiGenerator\\Controllers\\API\\BlogPostsApiController->getAccounts(Object(Illuminate\\Http\\Request))\n#2 /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(AhmadFatoni\\ApiGenerator\\Controllers\\API\\BlogPostsApiController), \'getAccounts\')\n#3 /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#4 /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#5 /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#6 /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#7 /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#8 /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#9 /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#10 /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#11 /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#12 /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#13 /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#14 /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#15 /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#16 /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#17 /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#18 /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#19 /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#20 /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#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#23 {main}', '[]', '2023-07-27 19:56:09', '2023-07-27 19:56:09'), (3827, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:56:49', '2023-07-27 19:56:49'); INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES (3828, 'error', 'ErrorException: Undefined index: type in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/ahmadfatoni/apigenerator/controllers/api/BlogPostsApiController.php:56\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/ahmadfatoni/apigenerator/controllers/api/BlogPostsApiController.php(56): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(8, \'Undefined index...\', \'/Users/tmstore/...\', 56, Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(48): AhmadFatoni\\ApiGenerator\\Controllers\\API\\BlogPostsApiController->getAccounts(Object(Illuminate\\Http\\Request))\n#2 /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(AhmadFatoni\\ApiGenerator\\Controllers\\API\\BlogPostsApiController), \'getAccounts\')\n#3 /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#4 /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#5 /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#6 /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#7 /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#8 /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#9 /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#10 /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#11 /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#12 /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#13 /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#14 /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#15 /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#16 /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#17 /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#18 /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#19 /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#20 /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#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#23 {main}', '[]', '2023-07-27 19:56:54', '2023-07-27 19:56:54'), (3829, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:57:49', '2023-07-27 19:57:49'), (3830, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:58:49', '2023-07-27 19:58:49'), (3831, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 19:59:49', '2023-07-27 19:59:49'), (3832, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:00:49', '2023-07-27 20:00:49'), (3833, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:01:48', '2023-07-27 20:01:48'), (3834, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:02:49', '2023-07-27 20:02:49'), (3835, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:03:49', '2023-07-27 20:03:49'), (3836, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:04:49', '2023-07-27 20:04:49'), (3837, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:05:49', '2023-07-27 20:05:49'), (3838, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:06:49', '2023-07-27 20:06:49'), (3839, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:07:49', '2023-07-27 20:07:49'), (3840, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:08:49', '2023-07-27 20:08:49'), (3841, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:09:49', '2023-07-27 20:09:49'), (3842, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:10:49', '2023-07-27 20:10:49'), (3843, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:11:48', '2023-07-27 20:11:48'), (3844, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:12:49', '2023-07-27 20:12:49'), (3845, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:13:49', '2023-07-27 20:13:49'), (3846, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:14:49', '2023-07-27 20:14:49'), (3847, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:15:49', '2023-07-27 20:15:49'), (3848, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:16:48', '2023-07-27 20:16:48'), (3849, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:17:49', '2023-07-27 20:17:49'), (3850, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:18:49', '2023-07-27 20:18:49'), (3851, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:19:49', '2023-07-27 20:19:49'), (3852, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:20:48', '2023-07-27 20:20:48'), (3853, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:21:48', '2023-07-27 20:21:48'), (3854, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:22:49', '2023-07-27 20:22:49'), (3855, 'error', 'Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}', '[]', '2023-07-27 20:23:49', '2023-07-27 20:23:49'); INSERT INTO `system_files` (`id`, `disk_name`, `file_name`, `file_size`, `content_type`, `title`, `description`, `field`, `attachment_id`, `attachment_type`, `is_public`, `sort_order`, `created_at`, `updated_at`) VALUES (1, '64c2b90ec18a3012514031.png', '1_online.png', 103303, 'image/png', NULL, NULL, 'images', '1', 'TPS\\Birzha\\Models\\Product', 1, 1, '2023-07-27 18:35:58', '2023-07-27 18:36:35'), (2, '64c2b90f71e71354083596.png', '3_norm.png', 103486, 'image/png', NULL, NULL, 'images', '1', 'TPS\\Birzha\\Models\\Product', 1, 2, '2023-07-27 18:35:59', '2023-07-27 18:36:35'), (3, '64c2b90f9d7d6941009585.png', '4-biznes_zal.png', 124269, 'image/png', NULL, NULL, 'images', '1', 'TPS\\Birzha\\Models\\Product', 1, 3, '2023-07-27 18:35:59', '2023-07-27 18:36:35'), (4, '64c2bbab6177b185915532.png', '1_online.png', 103303, 'image/png', NULL, NULL, 'images', '2', 'TPS\\Birzha\\Models\\Product', 1, 4, '2023-07-27 18:47:07', '2023-07-27 18:47:14'), (5, '64c2bbab884ea081503824.png', '4-biznes_zal.png', 124269, 'image/png', NULL, NULL, 'images', '2', 'TPS\\Birzha\\Models\\Product', 1, 5, '2023-07-27 18:47:07', '2023-07-27 18:47:14'), (6, '64c2c3760e6b3553710434.png', 'about_1.png', 138879, 'image/png', NULL, NULL, 'images', '3', 'TPS\\Birzha\\Models\\Product', 1, 6, '2023-07-27 19:20:22', '2023-07-27 19:20:28'), (7, '64c2c37637c91043506628.png', 'about_2.png', 98027, 'image/png', NULL, NULL, 'images', '3', 'TPS\\Birzha\\Models\\Product', 1, 7, '2023-07-27 19:20:22', '2023-07-27 19:20:28'); INSERT INTO `system_parameters` (`id`, `namespace`, `group`, `item`, `value`) VALUES (1, 'system', 'update', 'count', '0'), (2, 'cms', 'theme', 'active', '\"gulushyk2\"'), (3, 'system', 'update', 'retry', '1690566172'); 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