42 lines
773 B
PHP
42 lines
773 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Console\Commands\Admin;
|
||
|
|
||
|
use App\Models\Admin;
|
||
|
use Illuminate\Console\Command;
|
||
|
|
||
|
class Delete extends Command
|
||
|
{
|
||
|
/**
|
||
|
* The name and signature of the console command.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $signature = 'admin:delete';
|
||
|
|
||
|
/**
|
||
|
* The console command description.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $description = '删除一个管理员';
|
||
|
|
||
|
/**
|
||
|
* Execute the console command.
|
||
|
*
|
||
|
* @return int
|
||
|
*/
|
||
|
public function handle()
|
||
|
{
|
||
|
// 获取管理员ID
|
||
|
$id = $this->ask('请输入管理员ID');
|
||
|
|
||
|
// 删除管理员
|
||
|
Admin::destroy($id);
|
||
|
|
||
|
// 输出信息
|
||
|
$this->info('管理员删除成功。');
|
||
|
return Command::SUCCESS;
|
||
|
}
|
||
|
}
|