Files
ticketbeast/routes/console.php
2017-12-11 07:24:56 -05:00

24 lines
724 B
PHP

<?php
use App\Invitation;
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 = Invitation::create([
'email' => $email,
'code' => InvitationCode::generate(),
]);
})->describe('Invite a new promoter to create an account.');