gravure/laravel-verification-tokens

Generic verification library for Laravel with callback and events.

1.0 2017-03-23 21:50 UTC

This package is auto-updated.

Last update: 2024-04-05 17:44:46 UTC


README

A library to easily generate a token, for use in e-mail for instance, and automatically process callbacks.

Installation

composer require gravure/laravel-verification-tokens

Register the service provider in your config/app.php:

    // Gravure verification tokens
    Gravure\Verification\Providers\VerificationProvider::class,

The route provider register the callback handler, the route is named: verification.callback. Feel free to implement your own provider and/or route.