mekadalibrahem/toolkit
最新稳定版本:v2.0.3
Composer 安装命令:
composer require mekadalibrahem/toolkit
包简介
package provides a wide range of functionalities that are essential for various laravel projects
README 文档
README
package provides a wide range of functionalities that are essential for various laravel projects
download
- donwload package :
composer require mekadalibrahem/toolkit
- for laravel 10 download version ^1
composer require mekadalibrahem/toolkit=^1
- install package :
php artisan toolkit:install
- update your database tables
php artisan migrate
Enable Verify Email
- verify that your
App\Models\Usermodel implements theIlluminate\Contracts\Auth\MustVerifyEmailcontract:
<?php namespace App\Models; use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; class User extends Authenticatable implements MustVerifyEmail { use Notifiable; // ... }
show more in laravel docs verification
- add your mail driver config in
.envfile
MAIL_MAILER= MAIL_HOST= MAIL_PORT= MAIL_USERNAME= MAIL_PASSWORD= MAIL_ENCRYPTION= MAIL_FROM_ADDRESS= MAIL_FROM_NAME="${APP_NAME}"
show more about mail in laravel docs mail
统计信息
- 总下载量: 12
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-03-28