2020-02-21 11:12:52 +03:00

35 lines
661 B
PHP

<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class UserSeed extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'user:seed {user} {company}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Seed for specific user';
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$class = $this->laravel->make('Database\Seeds\User');
$class->setContainer($this->laravel)->setCommand($this)->__invoke();
}
}