/**
  * Execute the console command.
  *
  * @return mixed
  */
 public function handle()
 {
     $name = $this->argument('name');
     $cmt = $this->argument('description');
     $role = new AclRole();
     $role->name = $name;
     $role->comment = $cmt;
     $role->save();
     $this->info('saved: ' . $role->id);
 }