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