This commit is contained in:
Bozhidar 2024-05-02 11:58:46 +03:00
parent bb75a16428
commit 67c47a9581
2 changed files with 37 additions and 1 deletions

View file

@ -1,6 +1,6 @@
<?php
namespace app\Console\Commands;
namespace App\Console\Commands;
use App\Models\Backup;
use App\Models\HostingSubscription;

View file

@ -0,0 +1,36 @@
<?php
namespace App\Console\Commands;
use App\Models\Backup;
use App\Models\HostingSubscription;
use Carbon\Carbon;
use Illuminate\Console\Command;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateDailyFullHostingSubscriptionsBackup extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'phyre:create-daily-full-hosting-subscriptions-backup';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Execute the console command.
*/
public function handle()
{
}
}