initial commit
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user