25 lines
770 B
PHP
25 lines
770 B
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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('dev:generate-personal-token {userId}', function ($userId) {
|
|
$user = User::find($userId);
|
|
$this->info('Token for user '.$user->name);
|
|
$token = $user->createToken('Personal Access Token')->accessToken;
|
|
$this->info($token);
|
|
})->describe('Generates a personal access token for a user');
|
|
|
|
|