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
.envfile
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_DEBUGfromTruetoFalse
APP_DEBUG=trueChange your
APP_NAMEon your desire name or to your company name.Change your
APP_URLbased on your current domains.Change
APP_ENVtoProductionUpdate your database connection credentials
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=recruit
DB_USERNAME=root
DB_PASSWORD=rootLast updated