Environment Variables
Run php artisan generate:key if you haven't done it yet.
Setup up your default mailer by changing this parameters from your
.env
file
MAIL_MAILER=smtp
MAIL_HOST=mailpit
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="hello@example.com"
MAIL_FROM_NAME="${APP_NAME}"
Disable debugging errors by changing
APP_DEBUG
fromTrue
toFalse
APP_DEBUG=true
Change your
APP_NAME
on your desire name or to your company name.Change your
APP_URL
based on your current domains.Change
APP_ENV
toProduction
Update your database connection credentials
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=recruit
DB_USERNAME=root
DB_PASSWORD=root
Last updated