$input['password'] = bcrypt($input['password']);
$password = Hash::make('secret');
// To encrypt a Laravel .env file
php artisan env:encrypt
// A new .env.encrypted will be created and the key will be printed
// In the output. This key should be saved in Password Manager to
// Decrypt it later.
// To decrypt a Laravel .env file
php artisan env:decrypt