dakeashish1997/laravel-bootstrap-skeleton
最新稳定版本:v1.0.0
Composer 安装命令:
composer create-project dakeashish1997/laravel-bootstrap-skeleton
包简介
The skeleton application for the Laravel framework.
关键字:
README 文档
README
Configuration
Multiple features
By default, all features are enabled, except email verification and password reset.
Update email verification
If you want to use email verification or password reset feature, you need to set up the mail configuration in the .env file
MAIL_MAILER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=your_username
MAIL_PASSWORD=your_password
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=your_email
MAIL_FROM_NAME="${APP_NAME}"
In addition to this, you need to set up the mail verification in the app/Models/User.php file.
... your other code
class User extends Authenticatable implements MustVerifyEmail
... your other code
and enable feature in .env file. Make sure you have the following lines in your .env file:
FEATURE_UPDATE_EMAIL_VERIFICATION=true
FEATURE_UPDATE_RESET_PASSWORD=true
Update profile photo
Update password
Update 2 factor authentication
Update reset password
Update account deactivation
统计信息
- 总下载量: 2
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-05-27