Files
HRM-System/app/Console/Commands/ImportRameData.php
2026-04-20 00:20:10 +08:00

31 lines
501 B
PHP

<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class ImportRameData extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'app:import-rame-data';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Execute the console command.
*/
public function handle()
{
//
}
}