Installation: Deploying Passport

Php artisan passport:keys
/**
 * Register any authentication / authorization services.
 *
 * @return void
 */
public function boot()
{
    $this->registerPolicies();

    Passport::routes();

    Passport::loadKeysFrom('/secret-keys/oauth');
}

Installation: Deploying Passport — Structure map

Clickable & Draggable!

Installation: Deploying Passport — Related pages: