SmartCane/laravel_app/app/Console/Commands/BuildReports.php
2024-05-27 11:59:09 +02:00

34 lines
603 B
PHP

<?php
namespace App\Console\Commands;
use App\Models\Project;
use Illuminate\Console\Command;
class BuildReports extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'smartcane:build-reports';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Execute the console command.
*/
public function handle()
{
// TODO schedule all the project if mail
Project::find(1)->schedule();
}
}