Admin dashboard in Laravel ​8.XX Full Controller User

Admin dashboard in Laravel ​8.XX Full Controller User

How to Clone and Run the Laravel Project

Follow these steps to set up the Laravel Dashboard project on your local machine:

Step 1: Clone the Project

Open your terminal and run the following command to clone the repository:

git clone https://gitlab.com/SoengSouy/laravel_dashboard_version13.git

Then, navigate into the project directory:

cd laravel_dashboard_version13

Step 2: Install Composer Dependencies

Run the following command to install the required PHP packages:

composer update

Step 3: Configure Environment File

Copy the example .env file to create your own configuration:

cp .env.example .env

Then open .env and update your database and mail settings:

Database Configuration:

DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=your_db DB_USERNAME=root DB_PASSWORD=your_db_password

Mail Configuration (for password reset, etc.):

MAIL_DRIVER=smtp MAIL_HOST=smtp.gmail.com MAIL_PORT=587 MAIL_USERNAME=your_email@gmail.com MAIL_PASSWORD=your_email_password MAIL_ENCRYPTION=tls

Step 4: Generate Application Key

Run the following command to generate your app key:

php artisan key:generate

Step 5: Run Migrations

Migrate the database to create all necessary tables:

php artisan migrate

Step 6: Start the Development Server

Run the Laravel development server with:

php artisan serve

By default, your app will be accessible at:

http://localhost:8000

Soeng Souy

Soeng Souy

Website that learns and reads, PHP, Framework Laravel, How to and download Admin template sample source code free.

1 Comments

CAN FEEDBACK
  1. PHP Skills Learning
    PHP Skills Learning
    i need full video about how to ingrate payway payment gateway in laravel
close