999, 'name' => 'Test command', 'email' => 'test@command.com', 'password' => bcrypt('password'), ]); $this->line("User's name is " . User::find(999)->name); $this->line($this->argument('a')); $this->line($this->option('c')); } } class User extends \Illuminate\Database\Eloquent\Model { protected $guarded = []; }