[ 4] 0.00-1.01 sec 768 KBytes 6.25 Mbits/sec
[ 4] 1.01-2.00 sec 384 KBytes 3.15 Mbits/sec
[ 4] 2.00-3.00 sec 640 KBytes 5.24 Mbits/sec
[ 4] 3.00-4.01 sec 512 KBytes 4.17 Mbits/sec
[ 4] 4.01-5.01 sec 640 KBytes 5.23 Mbits/sec
[ 4] 5.01-6.00 sec 768 KBytes 6.35 Mbits/sec
[ 4] 6.00-7.01 sec 768 KBytes 6.27 Mbits/sec
[ 4] 7.01-8.01 sec 768 KBytes 6.28 Mbits/sec
[ 4] 8.01-9.01 sec 768 KBytes 6.28 Mbits/sec
[ 4] 9.01-10.01 sec 768 KBytes 6.30 Mbits/sec
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval Transfer Bandwidth
[ 4] 0.00-10.01 sec 6.62 MBytes 5.55 Mbits/sec sender
[ 4] 0.00-10.01 sec 6.54 MBytes 5.48 Mbits/sec receiver
Reverse mode
[ 4] 0.00-1.00 sec 208 KBytes 1.70 Mbits/sec
[ 4] 1.00-2.01 sec 131 KBytes 1.07 Mbits/sec
[ 4] 2.01-3.01 sec 204 KBytes 1.67 Mbits/sec
[ 4] 3.01-4.00 sec 131 KBytes 1.08 Mbits/sec
[ 4] 4.00-5.00 sec 131 KBytes 1.07 Mbits/sec
[ 4] 5.00-6.01 sec 237 KBytes 1.92 Mbits/sec
[ 4] 6.01-7.01 sec 176 KBytes 1.45 Mbits/sec
[ 4] 7.01-8.00 sec 87.5 KBytes 718 Kbits/sec
[ 4] 8.00-9.00 sec 135 KBytes 1.11 Mbits/sec
[ 4] 9.00-10.00 sec 123 KBytes 1.01 Mbits/sec
так как это 1 класс - пользователи, разделенный через ацл или рбак.В данном случае этого нет, на сайте 3 таблицы, юзеры, кастомеры и консультанты)
CREATE TABLE `articles` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`question_id` bigint(20) unsigned DEFAULT NULL,
`customer_id` bigint(20) unsigned DEFAULT NULL,
`preview` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`meta_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_keywords` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `articles_question_id_foreign` (`question_id`),
KEY `articles_customer_id_foreign` (`customer_id`),
FULLTEXT KEY `search` (`title`,`content`,`slug`),
CONSTRAINT `articles_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL,
CONSTRAINT `articles_question_id_foreign` FOREIGN KEY (`question_id`) REFERENCES `questions` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=105 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
CREATE TABLE `consultant_articles` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`text_uid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`consultant_id` bigint(20) unsigned NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`parent_category_id` int(11) DEFAULT NULL,
`category_id` int(11) DEFAULT NULL,
`service_id` int(11) DEFAULT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`seo_details` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`image` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT 0,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `consultant_articles_consultant_id_foreign` (`consultant_id`),
FULLTEXT KEY `search` (`title`,`content`),
CONSTRAINT `consultant_articles_consultant_id_foreign` FOREIGN KEY (`consultant_id`) REFERENCES `consultants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
и смотрите что не так во время выполнения. Правда автолоад нужно подгружать из папки vendor. require __DIR__.'/vendor/autoload.php';