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