Exemplo n.º 1
0
 /**
  * Execute the console command.
  *
  * @return mixed
  */
 public function handle()
 {
     // Carregar parametro
     $id = $this->argument('id');
     // Gerar confite
     $convite = $this->invite->make($id);
     $this->output->write('Convite: ');
     $this->info($convite->id);
 }
Exemplo n.º 2
0
 /**
  * Execute the console command.
  *
  * @return mixed
  */
 public function handle()
 {
     $this->invite->delete();
     $this->info('Convites excluidos');
 }