// SYSTEM PANEL //
[ROOT]
/
mnt
/
pleskStorage
/
vhosts
/
kodsolutions.net
/
subdomains
/
qlock.kodsolutions.net
/
routes
[ PARENT ]
EDIT :: web.php
<?php use App\Services\FCM; use Illuminate\Support\Facades\Route; Route::get('/', function () { return view('index'); })->name('home'); Route::get('/test-notification', function () { $tokens = App\Models\Device::pluck('fcm_token')->toArray(); FCM::send($tokens, 'Test Notification', 'This is a test notification', ['type' => 'normal']); FCM::send($tokens, 'chat Invitation', 'You have been invited to chat', ['type' => 'chat', 'object_id' => 1]); return 'sent'; });
SAVE
CANCEL