initial commit
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
use App\Http\Controllers\Auth\AuthenticatedSessionController;
|
||||
use App\Http\Controllers\Auth\ConfirmablePasswordController;
|
||||
use App\Http\Controllers\Auth\EmailVerificationNotificationController;
|
||||
use App\Http\Controllers\Auth\EmailVerificationPromptController;
|
||||
use App\Http\Controllers\Auth\NewPasswordController;
|
||||
use App\Http\Controllers\Auth\PasswordController;
|
||||
use App\Http\Controllers\Auth\PasswordResetLinkController;
|
||||
use App\Http\Controllers\Auth\RegisteredUserController;
|
||||
use App\Http\Controllers\Auth\VerifyEmailController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::get('login', [AuthenticatedSessionController::class, 'create'])->name('login');
|
||||
|
||||
Route::middleware('guest')->group(function () {
|
||||
Route::get('register', [RegisteredUserController::class, 'create'])
|
||||
->name('register');
|
||||
|
||||
Route::post('register', [RegisteredUserController::class, 'store']);
|
||||
|
||||
Route::get('login', [AuthenticatedSessionController::class, 'create'])
|
||||
->name('login');
|
||||
|
||||
Route::post('login', [AuthenticatedSessionController::class, 'store'])->name('store.login');
|
||||
|
||||
Route::get('forgot-password', [PasswordResetLinkController::class, 'create'])
|
||||
->name('password.request');
|
||||
|
||||
Route::post('forgot-password', [PasswordResetLinkController::class, 'store'])
|
||||
->name('password.email');
|
||||
|
||||
Route::get('reset-password/{token}', [NewPasswordController::class, 'create'])
|
||||
->name('password.reset');
|
||||
|
||||
Route::post('reset-password', [NewPasswordController::class, 'store'])
|
||||
->name('password.store');
|
||||
});
|
||||
|
||||
Route::middleware('auth')->group(function () {
|
||||
Route::get('verify-email', EmailVerificationPromptController::class)
|
||||
->name('verification.notice');
|
||||
|
||||
Route::get('verify-email/{id}/{hash}', VerifyEmailController::class)
|
||||
->middleware(['signed', 'throttle:6,1'])
|
||||
->name('verification.verify');
|
||||
|
||||
Route::post('email/verification-notification', [EmailVerificationNotificationController::class, 'store'])
|
||||
->middleware('throttle:6,1')
|
||||
->name('verification.send');
|
||||
|
||||
Route::get('confirm-password', [ConfirmablePasswordController::class, 'show'])
|
||||
->name('password.confirm');
|
||||
|
||||
Route::post('confirm-password', [ConfirmablePasswordController::class, 'store']);
|
||||
|
||||
Route::put('password', [PasswordController::class, 'update'])->name('password.update');
|
||||
|
||||
Route::post('logout', [AuthenticatedSessionController::class, 'destroy'])
|
||||
->name('logout');
|
||||
});
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Broadcast;
|
||||
|
||||
Broadcast::channel('App.Models.User.{id}', function ($user, $id) {
|
||||
return (int) $user->id === (int) $id;
|
||||
});
|
||||
@@ -0,0 +1,75 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
/**
|
||||
* Authentication for pusher private channels
|
||||
*/
|
||||
Route::post('/chat/auth', 'MessagesController@pusherAuth')->name('api.pusher.auth');
|
||||
|
||||
/**
|
||||
* Fetch info for specific id [user/group]
|
||||
*/
|
||||
Route::post('/idInfo', 'MessagesController@idFetchData')->name('api.idInfo');
|
||||
|
||||
/**
|
||||
* Send message route
|
||||
*/
|
||||
Route::post('/sendMessage', 'MessagesController@send')->name('api.send.message');
|
||||
|
||||
/**
|
||||
* Fetch messages
|
||||
*/
|
||||
Route::post('/fetchMessages', 'MessagesController@fetch')->name('api.fetch.messages');
|
||||
|
||||
/**
|
||||
* Download attachments route to create a downloadable links
|
||||
*/
|
||||
Route::get('/download/{fileName}', 'MessagesController@download')->name('api.'.config('chatify.attachments.download_route_name'));
|
||||
|
||||
/**
|
||||
* Make messages as seen
|
||||
*/
|
||||
Route::post('/makeSeen', 'MessagesController@seen')->name('api.messages.seen');
|
||||
|
||||
/**
|
||||
* Get contacts
|
||||
*/
|
||||
Route::get('/getContacts', 'MessagesController@getContacts')->name('api.contacts.get');
|
||||
|
||||
/**
|
||||
* Star in favorite list
|
||||
*/
|
||||
Route::post('/star', 'MessagesController@favorite')->name('api.star');
|
||||
|
||||
/**
|
||||
* get favorites list
|
||||
*/
|
||||
Route::post('/favorites', 'MessagesController@getFavorites')->name('api.favorites');
|
||||
|
||||
/**
|
||||
* Search in messenger
|
||||
*/
|
||||
Route::get('/search', 'MessagesController@search')->name('api.search');
|
||||
|
||||
/**
|
||||
* Get shared photos
|
||||
*/
|
||||
Route::post('/shared', 'MessagesController@sharedPhotos')->name('api.shared');
|
||||
|
||||
/**
|
||||
* Delete Conversation
|
||||
*/
|
||||
Route::post('/deleteConversation', 'MessagesController@deleteConversation')->name('api.conversation.delete');
|
||||
|
||||
/**
|
||||
* Delete Conversation
|
||||
*/
|
||||
Route::post('/updateSettings', 'MessagesController@updateSettings')->name('api.avatar.update');
|
||||
|
||||
/**
|
||||
* Set active status
|
||||
*/
|
||||
Route::post('/setActiveStatus', 'MessagesController@setActiveStatus')->name('api.activeStatus.set');
|
||||
|
||||
|
||||
@@ -0,0 +1,388 @@
|
||||
[23-Jun-2024 01:06:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[23-Jun-2024 01:06:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[25-Jun-2024 16:17:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[25-Jun-2024 16:18:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[26-Jun-2024 21:49:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[26-Jun-2024 21:49:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[29-Jun-2024 10:03:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[04-Jul-2024 18:39:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[05-Jul-2024 12:47:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[05-Jul-2024 12:47:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[06-Jul-2024 18:39:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[28-Jul-2024 00:53:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[03-Aug-2024 01:35:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[03-Aug-2024 01:35:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[03-Aug-2024 02:03:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[03-Aug-2024 02:03:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[29-Aug-2024 06:13:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[29-Aug-2024 14:31:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[04-Oct-2024 02:08:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[04-Oct-2024 02:26:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[07-Oct-2024 09:24:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[07-Oct-2024 09:24:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[07-Nov-2024 08:45:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[07-Nov-2024 09:15:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[22-Nov-2024 23:16:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[22-Nov-2024 23:16:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[06-Dec-2024 21:23:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[07-Dec-2024 04:26:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[09-Jan-2025 11:51:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[09-Jan-2025 15:20:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[21-Jan-2025 09:29:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[22-Jan-2025 14:45:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[25-Jan-2025 20:12:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[10-Feb-2025 21:02:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[10-Feb-2025 21:41:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[15-Mar-2025 04:42:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[15-Mar-2025 05:54:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[28-Mar-2025 12:26:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[03-Apr-2025 10:52:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[11-Apr-2025 21:14:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[14-Apr-2025 01:29:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[22-Apr-2025 09:08:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[22-Apr-2025 11:12:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[24-Apr-2025 23:30:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[28-Apr-2025 04:43:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[25-May-2025 16:13:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[29-May-2025 14:21:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[28-Jun-2025 14:09:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[28-Jun-2025 19:07:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[26-Aug-2025 22:46:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[26-Aug-2025 23:00:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[29-Aug-2025 03:39:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[30-Aug-2025 06:11:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[12-Sep-2025 10:00:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[12-Sep-2025 10:09:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[13-Sep-2025 00:40:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[17-Sep-2025 00:44:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[25-Sep-2025 12:58:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[25-Sep-2025 14:03:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[24-Oct-2025 02:34:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[24-Oct-2025 03:20:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[28-Oct-2025 16:17:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[30-Oct-2025 02:23:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[24-Nov-2025 00:21:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[24-Nov-2025 05:08:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[13-Jan-2026 09:13:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[14-Jan-2026 10:00:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[14-Jan-2026 16:12:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[16-Jan-2026 10:02:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[17-Jan-2026 09:42:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[18-Jan-2026 09:22:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[19-Jan-2026 09:50:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[20-Jan-2026 09:10:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[22-Jan-2026 10:15:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[23-Jan-2026 09:41:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[24-Jan-2026 10:44:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[25-Jan-2026 09:48:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[26-Jan-2026 10:48:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[27-Jan-2026 09:50:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[27-Jan-2026 13:22:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[27-Jan-2026 13:33:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[28-Jan-2026 16:21:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[31-Jan-2026 09:32:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[02-Feb-2026 09:10:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[04-Feb-2026 09:30:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[01-Mar-2026 10:26:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[01-Mar-2026 15:57:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[19-Mar-2026 18:16:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[19-Mar-2026 18:53:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[20-Mar-2026 05:50:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[21-Mar-2026 20:03:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[26-Mar-2026 21:32:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[26-Mar-2026 21:32:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[05-Apr-2026 19:02:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
[05-Apr-2026 22:29:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[09-May-2026 12:06:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8
|
||||
[09-May-2026 12:33:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16
|
||||
@@ -0,0 +1,118 @@
|
||||
<?php
|
||||
/**
|
||||
* -----------------------------------------------------------------
|
||||
* NOTE : There is two routes has a name (user & group),
|
||||
* any change in these two route's name may cause an issue
|
||||
* if not modified in all places that used in (e.g Chatify class,
|
||||
* Controllers, chatify javascript file...).
|
||||
* -----------------------------------------------------------------
|
||||
*/
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
/*
|
||||
* This is the main app route [Chatify Messenger]
|
||||
*/
|
||||
Route::get('/', 'MessagesController@index')->name(config('chatify.routes.prefix'));
|
||||
|
||||
/**
|
||||
* Fetch info for specific id [user/group]
|
||||
*/
|
||||
Route::post('/idInfo', 'MessagesController@idFetchData');
|
||||
|
||||
/**
|
||||
* Send message route
|
||||
*/
|
||||
Route::post('/sendMessage', 'MessagesController@send')->name('send.message');
|
||||
|
||||
/**
|
||||
* Fetch messages
|
||||
*/
|
||||
Route::post('/fetchMessages', 'MessagesController@fetch')->name('fetch.messages');
|
||||
|
||||
/**
|
||||
* Download attachments route to create a downloadable links
|
||||
*/
|
||||
Route::get('/download/{fileName}', 'MessagesController@download')->name(config('chatify.attachments.download_route_name'));
|
||||
|
||||
/**
|
||||
* Authentication for pusher private channels
|
||||
*/
|
||||
Route::post('/chat/auth', 'MessagesController@pusherAuth')->name('pusher.auth');
|
||||
|
||||
/**
|
||||
* Make messages as seen
|
||||
*/
|
||||
Route::post('/makeSeen', 'MessagesController@seen')->name('messages.seen');
|
||||
|
||||
/**
|
||||
* Get contacts
|
||||
*/
|
||||
Route::get('/getContacts', 'MessagesController@getContacts')->name('contacts.get');
|
||||
|
||||
/**
|
||||
* Update contact item data
|
||||
*/
|
||||
Route::post('/updateContacts', 'MessagesController@updateContactItem')->name('contacts.update');
|
||||
|
||||
|
||||
/**
|
||||
* Star in favorite list
|
||||
*/
|
||||
Route::post('/star', 'MessagesController@favorite')->name('star');
|
||||
|
||||
/**
|
||||
* get favorites list
|
||||
*/
|
||||
Route::post('/favorites', 'MessagesController@getFavorites')->name('favorites');
|
||||
|
||||
/**
|
||||
* Search in messenger
|
||||
*/
|
||||
Route::get('/search', 'MessagesController@search')->name('search');
|
||||
|
||||
/**
|
||||
* Get shared photos
|
||||
*/
|
||||
Route::post('/shared', 'MessagesController@sharedPhotos')->name('shared');
|
||||
|
||||
/**
|
||||
* Delete Conversation
|
||||
*/
|
||||
Route::post('/deleteConversation', 'MessagesController@deleteConversation')->name('conversation.delete');
|
||||
|
||||
/**
|
||||
* Delete Message
|
||||
*/
|
||||
Route::post('/deleteMessage', 'MessagesController@deleteMessage')->name('message.delete');
|
||||
|
||||
/**
|
||||
* Update setting
|
||||
*/
|
||||
Route::post('/updateSettings', 'MessagesController@updateSettings')->name('avatar.update');
|
||||
|
||||
/**
|
||||
* Set active status
|
||||
*/
|
||||
Route::post('/setActiveStatus', 'MessagesController@setActiveStatus')->name('activeStatus.set');
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* [Group] view by id
|
||||
*/
|
||||
Route::get('/group/{id}', 'MessagesController@index')->name('group');
|
||||
|
||||
/*
|
||||
* user view by id.
|
||||
* Note : If you added routes after the [User] which is the below one,
|
||||
* it will considered as user id.
|
||||
*
|
||||
* e.g. - The commented routes below :
|
||||
*/
|
||||
// Route::get('/route', function(){ return 'Munaf'; }); // works as a route
|
||||
Route::get('/{id}', 'MessagesController@index')->name('user');
|
||||
// Route::get('/route', function(){ return 'Munaf'; }); // works as a user id
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Foundation\Inspiring;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
|
||||
Artisan::command('inspire', function () {
|
||||
$this->comment(Inspiring::quote());
|
||||
})->purpose('Display an inspiring quote')->hourly();
|
||||
@@ -0,0 +1,860 @@
|
||||
[22-Jun-2024 22:36:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[22-Jun-2024 22:36:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[23-Jun-2024 01:06:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[23-Jun-2024 01:06:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[25-Jun-2024 09:07:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[25-Jun-2024 09:07:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[25-Jun-2024 09:07:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[25-Jun-2024 11:11:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[26-Jun-2024 17:53:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[26-Jun-2024 17:53:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[26-Jun-2024 17:53:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[26-Jun-2024 17:54:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[28-Jun-2024 21:58:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[28-Jun-2024 21:59:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[29-Jun-2024 16:27:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[29-Jun-2024 21:49:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[01-Jul-2024 17:04:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[01-Jul-2024 20:34:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[02-Jul-2024 04:07:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[02-Jul-2024 07:58:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[02-Jul-2024 23:25:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[03-Jul-2024 20:45:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[17-Jul-2024 22:42:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[18-Jul-2024 03:08:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[18-Jul-2024 08:46:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[18-Jul-2024 12:42:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[24-Jul-2024 16:38:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[30-Jul-2024 07:03:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[31-Jul-2024 11:36:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[31-Jul-2024 11:36:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[03-Aug-2024 01:35:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[03-Aug-2024 01:35:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[03-Aug-2024 01:35:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[03-Aug-2024 01:35:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[03-Aug-2024 02:03:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[03-Aug-2024 02:03:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[03-Aug-2024 02:03:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[03-Aug-2024 02:03:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[04-Aug-2024 09:03:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[04-Aug-2024 12:50:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[17-Aug-2024 15:54:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[17-Aug-2024 15:54:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[17-Aug-2024 15:54:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[17-Aug-2024 15:54:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[25-Aug-2024 19:42:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[25-Aug-2024 19:42:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[25-Aug-2024 19:42:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[25-Aug-2024 19:43:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[25-Aug-2024 20:44:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[25-Aug-2024 20:44:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[25-Aug-2024 20:45:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[25-Aug-2024 20:45:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[26-Aug-2024 19:06:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[26-Aug-2024 19:27:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[26-Aug-2024 19:36:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[26-Aug-2024 20:22:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[28-Sep-2024 07:18:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[28-Sep-2024 17:59:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[28-Sep-2024 19:17:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[28-Sep-2024 20:36:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[03-Oct-2024 05:26:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[03-Oct-2024 19:18:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[05-Oct-2024 12:26:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[08-Oct-2024 10:34:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[31-Oct-2024 09:13:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[31-Oct-2024 15:01:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[31-Oct-2024 19:52:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[31-Oct-2024 20:38:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[08-Nov-2024 12:50:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[22-Nov-2024 23:16:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[22-Nov-2024 23:16:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[22-Nov-2024 23:16:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[22-Nov-2024 23:16:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[01-Dec-2024 22:27:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[02-Dec-2024 03:55:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[02-Dec-2024 07:29:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[02-Dec-2024 09:01:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[02-Jan-2025 00:48:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[02-Jan-2025 03:24:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[02-Jan-2025 12:18:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[02-Jan-2025 12:50:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[06-Jan-2025 09:37:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[07-Jan-2025 20:59:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[10-Jan-2025 10:29:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[12-Jan-2025 13:28:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[18-Jan-2025 19:31:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[19-Jan-2025 07:02:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[19-Jan-2025 12:02:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[19-Jan-2025 12:31:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[30-Jan-2025 21:37:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[30-Jan-2025 22:08:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[30-Jan-2025 23:53:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[31-Jan-2025 08:55:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[03-Mar-2025 21:19:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[04-Mar-2025 04:51:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[07-Mar-2025 13:13:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[28-Mar-2025 11:52:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[28-Mar-2025 13:07:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[28-Mar-2025 13:41:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[29-Mar-2025 01:17:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[03-Apr-2025 10:19:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[03-Apr-2025 12:46:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[10-Apr-2025 05:43:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[12-Apr-2025 03:28:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[12-Apr-2025 18:49:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[13-Apr-2025 07:42:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[14-Apr-2025 22:44:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[16-Apr-2025 18:49:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[17-Apr-2025 03:17:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[17-Apr-2025 03:28:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[01-May-2025 02:28:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[17-May-2025 18:33:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[20-May-2025 02:59:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[20-May-2025 13:34:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[24-May-2025 00:09:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[31-May-2025 09:03:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[17-Jun-2025 09:56:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[17-Jun-2025 11:20:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[26-Jun-2025 20:25:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[28-Jun-2025 11:09:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[15-Jul-2025 10:33:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[15-Jul-2025 11:32:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[26-Jul-2025 21:30:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[30-Jul-2025 09:48:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[13-Aug-2025 09:50:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[16-Aug-2025 14:40:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[26-Aug-2025 21:08:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[26-Aug-2025 22:28:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[29-Aug-2025 01:42:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[29-Aug-2025 03:53:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[31-Aug-2025 03:34:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[31-Aug-2025 04:16:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[31-Aug-2025 06:05:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[31-Aug-2025 11:39:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[31-Aug-2025 11:44:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[01-Sep-2025 00:39:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[13-Sep-2025 17:43:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[13-Sep-2025 19:05:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[14-Sep-2025 08:41:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[14-Sep-2025 08:45:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[17-Sep-2025 00:44:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[17-Sep-2025 00:44:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[25-Sep-2025 10:27:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[25-Sep-2025 11:50:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[18-Oct-2025 22:18:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[21-Oct-2025 16:55:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[24-Oct-2025 06:29:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[24-Oct-2025 08:59:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[25-Oct-2025 04:32:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[25-Oct-2025 14:30:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[27-Oct-2025 00:14:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[28-Oct-2025 00:22:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[17-Nov-2025 23:47:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[18-Nov-2025 01:46:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[23-Nov-2025 23:07:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[24-Nov-2025 01:30:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[08-Jan-2026 02:05:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[08-Jan-2026 10:21:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[08-Jan-2026 21:55:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[09-Jan-2026 10:34:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[10-Jan-2026 15:28:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[11-Jan-2026 08:42:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[11-Jan-2026 09:31:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[12-Jan-2026 10:40:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[13-Jan-2026 04:02:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[13-Jan-2026 04:03:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[13-Jan-2026 20:22:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[14-Jan-2026 21:01:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[15-Jan-2026 20:32:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[17-Jan-2026 03:32:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[17-Jan-2026 20:21:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[19-Jan-2026 03:10:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[19-Jan-2026 20:28:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[21-Jan-2026 04:02:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[22-Jan-2026 00:25:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[22-Jan-2026 06:29:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[23-Jan-2026 04:00:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[25-Jan-2026 10:09:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[25-Jan-2026 10:27:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[11-Feb-2026 00:17:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[18-Feb-2026 17:18:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[21-Feb-2026 20:40:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[23-Feb-2026 15:36:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[23-Feb-2026 18:08:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[23-Feb-2026 22:05:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[07-Mar-2026 22:44:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[08-Mar-2026 02:46:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[17-Mar-2026 00:35:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[19-Mar-2026 22:48:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[20-Mar-2026 14:25:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[22-Mar-2026 00:26:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[22-Mar-2026 14:24:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[22-Mar-2026 15:58:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[22-Mar-2026 17:49:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[22-Mar-2026 22:53:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[24-Mar-2026 10:55:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[26-Mar-2026 15:32:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[27-Mar-2026 18:38:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[19-Apr-2026 03:28:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[19-Apr-2026 03:56:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[19-Apr-2026 05:39:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[19-Apr-2026 07:38:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[21-Apr-2026 20:29:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[30-Apr-2026 09:51:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[30-Apr-2026 10:20:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[30-Apr-2026 11:21:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[30-Apr-2026 22:50:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[03-May-2026 01:00:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[03-May-2026 11:23:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[03-May-2026 14:23:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
[03-May-2026 16:53:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14
|
||||
[04-May-2026 05:22:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[04-May-2026 08:55:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21
|
||||
[05-May-2026 06:23:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6
|
||||
[12-May-2026 11:51:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5
|
||||
+116
@@ -0,0 +1,116 @@
|
||||
<?php
|
||||
|
||||
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use App\Http\Controllers\ProfileController;
|
||||
use App\Http\Controllers\AdminController;
|
||||
use App\Http\Controllers\DoctorController;
|
||||
use App\Http\Controllers\Consultation;
|
||||
use App\Http\Controllers\UserController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use App\Http\Controllers\DashboardController;
|
||||
use App\Http\Controllers\PredictionController;
|
||||
use App\Http\Controllers\ConsultationController;
|
||||
use App\Http\Controllers\StravaController;
|
||||
use App\Http\Controllers\Api\HealthDataAPIController;
|
||||
use App\Http\Controllers\Api\UserAPIController;
|
||||
use App\Http\Middleware\RedirectBasedOnRole;
|
||||
|
||||
|
||||
|
||||
Route::get('/', function () {
|
||||
return view('home');
|
||||
});
|
||||
|
||||
Route::get('/about', function () {
|
||||
return view('about');
|
||||
});
|
||||
|
||||
Route::get('/contact', function () {
|
||||
return view('contact');
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
Route::get('/customer-result', function () {
|
||||
return view('customer-result');
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
Route::post('/strava/authorize', [StravaController::class, 'authorize'])->name('strava.authorize');
|
||||
Route::get('/strava/callback', [StravaController::class, 'handleCallback'])->name('strava.callback');
|
||||
|
||||
|
||||
|
||||
// 1. CLIENT PAGES
|
||||
Route::group(['prefix' => 'client', 'middleware' => ['auth', 'verified']], function () {
|
||||
// DASHBOARD CONTROLLER
|
||||
Route::get('/dashboard', [DashboardController::class, 'dashboardClient'])->name('dashboard')->middleware('role');
|
||||
Route::get('/activity-report', [DashboardController::class, 'activityReport'])->name('activity-report');
|
||||
Route::get('/schedule', [DashboardController::class, 'schedule'])->name('customer.schedule');
|
||||
Route::get('/notifications', [DashboardController::class, 'notifications'])->name('client.notifications');
|
||||
Route::get('/results', [DashboardController::class, 'consultationResults'])->name('patient.consultation-results');
|
||||
|
||||
// CONSULTATION CONTROLLER
|
||||
Route::get('/health-data', [ConsultationController::class, 'showHealthDataForm'])->name('health-data.show');
|
||||
Route::post('/health-data', [ConsultationController::class, 'storeHealthDataForm'])->name('health-data.store');
|
||||
Route::get('/jadwal', [ConsultationController::class, 'showJadwalForm'])->name('jadwal.show');
|
||||
Route::post('/consultation', [ConsultationController::class, 'storeConsultation'])->name('consultation.store');
|
||||
Route::get('/profile', function () {return view('customer-profile');})->name('customer.profile');
|
||||
Route::get('/transaction', function () {return view('customer-transaction');})->name('customer.transaction');
|
||||
Route::get('/priv-policy', function () {return view('privacy-policy-client');})->name('customer.priv-policy');
|
||||
Route::get('/terms-con', function () {return view('terms-con-client');})->name('customer.terms-con');
|
||||
});
|
||||
|
||||
|
||||
// 2. ADMIN PAGES
|
||||
Route::group(['middleware' => ['auth', 'verified']], function () {
|
||||
Route::get('/admin/dashboard', [AdminController::class, 'dashboard'])->name('admin.dashboard')->middleware('role');
|
||||
Route::get('/admin/doctor-info', [AdminController::class, 'showDoctor'])->name('showDoctor');
|
||||
Route::get('/admin/patient-info', [AdminController::class, 'showPatient'])->name('showPatient');
|
||||
Route::get('/delete/user/{id}', [AdminController::class, 'delete'])->name('delete-user');
|
||||
Route::get('/user/{id}', [AdminController::class, 'showUserDetail'])->name('show-user');
|
||||
Route::post('/update/user/{id}', [AdminController::class, 'updateData'])->name('update-user');
|
||||
Route::get('/admin/profile', function () {return view('admin-profile');})->name('admin.profile');
|
||||
Route::get('/admin/priv-policy', function () {return view('privacy-policy-admin');})->name('admin.priv-policy');
|
||||
Route::get('/admin/terms-con', function () {return view('terms-con-admin');})->name('admin.terms-con');
|
||||
|
||||
});
|
||||
|
||||
// 3. DOCTOR PAGES
|
||||
Route::group(['prefix' => 'doctor', 'middleware' => ['auth', 'verified']], function () {
|
||||
Route::get('/dashboard', [DoctorController::class, 'dashboard'])->name('doctor.dashboard')->middleware('role');
|
||||
Route::post('/decline-consultation/{consultationId}', [DoctorController::class, 'declineConsultation'])->name('doctor.decline-consultation');
|
||||
Route::get('/patient-acceptance', [DoctorController::class, 'patientAcceptance'])->name('doctor.patient-acceptance');
|
||||
Route::get('/notifications', [DoctorController::class, 'notifications'])->name('doctor.notifications');
|
||||
|
||||
Route::get('/schedule', function () {return view('doctor-schedule');})->name('doctor.schedule');
|
||||
Route::get('/transaction', function () {return view('doctor-transaction');})->name('doctor.transaction');
|
||||
|
||||
Route::get('/profile', function () {return view('doctor-profile');})->name('doctor.profile');
|
||||
Route::get('/doctor/priv-policy', function () {return view('privacy-policy-doctor');})->name('doctor.priv-policy');
|
||||
Route::get('/doctor/terms-con', function () {return view('terms-con-doctor');})->name('doctor.terms-con');
|
||||
|
||||
Route::post('/approve-consultation/{consultationId}', [DoctorController::class, 'approveConsultation'])->name('doctor.approve-consultation');
|
||||
Route::get('/schedule', [DoctorController::class, 'schedule'])->name('doctor.schedule');
|
||||
|
||||
Route::get('/consultation-result/{patientId}', [DoctorController::class, 'showConsultationResultForm'])->name('doctor.show-consultation-result-form');
|
||||
Route::post('/consultation-result', [DoctorController::class, 'storeConsultationResult'])->name('doctor.store-consultation-result');
|
||||
});
|
||||
|
||||
|
||||
Route::middleware('auth')->group(function () {
|
||||
Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit');
|
||||
Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update');
|
||||
Route::delete('/profile', [ProfileController::class, 'destroy'])->name('profile.destroy');
|
||||
});
|
||||
|
||||
Route::middleware('auth')->get('/api/current-user-id', function () {
|
||||
return response()->json(['user_id' => Auth::id()]);
|
||||
});
|
||||
|
||||
|
||||
require __DIR__.'/auth.php';
|
||||
Reference in New Issue
Block a user