mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 11:14:06 +00:00
25 lines
748 B
PHP
25 lines
748 B
PHP
<?php
|
|
|
|
use App\Invitation;
|
|
use App\Mail\InvitationEmail;
|
|
use App\Facades\InvitationCode;
|
|
use Illuminate\Foundation\Inspiring;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Console Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This file is where you may define all of your Closure based console
|
|
| commands. Each Closure is bound to a command instance allowing a
|
|
| simple approach to interacting with each command's IO methods.
|
|
|
|
|
*/
|
|
|
|
Artisan::command('invite-promoter {email}', function ($email) {
|
|
Invitation::create([
|
|
'email' => $email,
|
|
'code' => InvitationCode::generate(),
|
|
])->send();
|
|
})->describe('Invite a new promoter to create an account.');
|