brucelyc

Results 2 comments of brucelyc

in routes/web.php add three lines... function () { Auth::routes(); Route::get('/', 'ResourceController@home')->name('home'); Route::get('login/{provider}', 'Auth\SocialAuthController@redirectToProvider'); **Route::get('email/verify', 'Auth\VerificationController@show')->name('verification.notice'); Route::get('email/verify/{id}', 'Auth\VerificationController@verify')->name('verification.verify'); Route::get('email/resend', 'Auth\VerificationController@resend')->name('verification.resend');** Route::group(['prefix' => 'user'], function () {

All Litepie\User\Contracts\UserPolicy should change to Litepie\User\Interfaces\UserPolicyInterface ?