BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
app
/
Console
/
Commands
📤 Upload
📝 New File
📁 New Folder
Close
Editing: CheckCoingateCommand.php
<?php namespace App\Console\Commands; use App\Services\PaymentGateways\CoingateService; use Illuminate\Console\Command; class CheckCoingateCommand extends Command { protected $signature = 'app:check-coingate-command'; protected $description = 'Command description'; public function handle(): void { CoingateService::checkPayments(); } }
Save
Cancel