ItSolutionStuff.com

How to Generate App Key in Laravel?

By Hardik Savani • April 16, 2024
Laravel

Hello Guys,

In this example, let's see how to generate app key in laravel. you will learn how to create app key in laravel. We will look at an example of laravel generate app key. We will look at an example of laravel create app key.

You can use this command with laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 versions.

Laravel provides an encrypted app key in laravel. Every laravel project has its own app key. Based on app key they will generate password, encrypt data etc. so when you get fresh laravel then provide APP_KEY variable on .env file with encrypted value. But when you clone repository from github, gitlab or anywhere then you have to generate new APP_KEY using laravel command.

If you created a .env file and you don't have APP_KEY yet then you will also find "no application encryption key has been specified." error.

So you can generate the app key using the below command:

Generate App Key Command:

run the below command to generate the app key in laravel.

php artisan key:generate

Then you will see on following .env file with updated value on APP_KEY variable.

.env

APP_KEY=base64:P9r5RXnghdhnhohddh2HDhBkPGnbLClYiRLx02QG0V6Tw=

I hope you get it.

It can help you...

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Get All Models in Laravel?

Read Now →

How to Get Columns Names from Model in Laravel?

Read Now →

How to Create Model in Laravel using Command?

Read Now →

Laravel Ajax PUT Request Example Tutorial

Read Now →

How to Get Environment Variable in Laravel React JS?

Read Now →

How to Store Array in Database Laravel?

Read Now →

Laravel Google Pie Chart Example Tutorial

Read Now →

Laravel Group By with Max Value Query Example

Read Now →

How to Create Seeder with JSON data in Laravel?

Read Now →

Laravel Summernote Image Upload Example

Read Now →

How to Install and Use Memcached in Laravel?

Read Now →

Laravel Fullcalendar Example Tutorial

Read Now →