Files
admin-php-module/commands/HelloWorld.php
2020-12-21 17:02:11 +03:00

22 lines
419 B
PHP

<?php
namespace App\Commands;
use App\Console\Commands\HRCCommand;
use App\Console\Commands\HRCCommandInterface;
use App\Models\User;
class HelloWorld extends HRCCommand implements HRCCommandInterface
{
protected $signature = 'gethello';
public function command($input)
{
$users = User::all();
return [
'status' => 'success',
'users' => $users
];
}
}