dakeashish1997/laravel-bootstrap-skeleton 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

dakeashish1997/laravel-bootstrap-skeleton

最新稳定版本:v1.0.0

Composer 安装命令:

composer create-project dakeashish1997/laravel-bootstrap-skeleton

包简介

The skeleton application for the Laravel framework.

README 文档

README

Laravel Logo

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

统计信息

  • 总下载量: 7
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: Blade

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-05-27