karabinse/laravel-user-invitation
最新稳定版本:1.2.1
Composer 安装命令:
composer require karabinse/laravel-user-invitation
包简介
User invitation for Laravel using built in PasswordBroker
README 文档
README
Installation
You can install the package via composer:
composer require karabinse/laravel-user-invitation
You can publish and run the migrations with:
php artisan vendor:publish --tag="laravel-user-invitation-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="laravel-user-invitation-config"
This is the contents of the published config file:
return [ 'notification_class' => \Karabin\UserInvitation\Notifications\InvitationNotification::class, 'notification_subject' => 'Registered account', 'notification_text' => "You're receiving this message because someone has registered an account for you on ".config('app.name').'. Click the link below to complete the registration by choosing a password', 'notification_action_text' => 'Complete registration', 'route' => 'register-user.create', 'users_registration' => [ 'provider' => 'users', 'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'), 'expire' => env('USER_INVITATION_EXPIRE', (60 * 24) * 7), 'throttle' => 60, ], ];
Usage
Add the trait
<?php namespace Karabin\UserInvitation\Tests\Fixtures; //... use Karabin\UserInvitation\Traits\Inviteable; class User extends AuthUser { use Inviteable, Notifiable; }
This gives access to two functions
<?php $user->createTokenForRegistration() // Returns a token string $user->sendInvitation() // Creates a token and sends a notification
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 5.3k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-05-10