lybuneiv/profilelogin

loing with profile app

Installs: 286

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Forks: 0

Type:module

1.0.4 2021-09-15 04:41 UTC

This package is auto-updated.

Last update: 2024-09-15 11:03:59 UTC


README

Profile Login Module.

Installation

You can install the package using Composer:

composer require lybuneiv/profilelogin

Then add the service provider to config/app.php:

Lybuneiv\Profilelogin\ProfileloginServiceProvider::class,

Then add the aliases service provider to config/app.php:

'Profilelogin' => Lybuneiv\Profilelogin\Facades\ProfileloginFacade::class

Publish the all file:

php artisan vendor:publish --provider="Lybuneiv\Profilelogin\ProfileloginServiceProvider" --force

Usage

First need to create account and domain in app customer profile login to get app key and secret

Add in env file

PROFILE_APP_URL=http://laravel8.home
PROFILE_APP_LOGIN_URL=http://laravel8.home/app/login
PROFILE_APP_KEY=850d33c2360c793c766876ff928de380
PROFILE_APP_SECRET=EMtO3o403aba1e8f5b4217fca9ee19acc9de59

Url for profile login app

{!! Profilelogin::url() !!}

Check and get email validation token with app by request (t_id and t_token)

{!! Profilelogin::getEmailValidationToken($request); !!}