Agrege comando para crear el admin en el server

This commit is contained in:
Daniel Cortés
2019-06-30 01:05:41 -04:00
parent 8a982c2461
commit b15c2dc658

View File

@@ -0,0 +1,48 @@
<?php
namespace App\Console\Commands;
use App\User;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Hash;
class CreateAdmin extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'make:admin {username} {email} {password}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Create an admin to enter the admin panel';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$user = new User();
$user->name = $this->argument('username');
$user->email= $this->argument('email');
$user->password= Hash::make($this->argument('password'));
$user->save();
}
}