To get started with this project, you will need to have the following software installed:
- PHP (version 8.0 or higher)
- Composer
- MySQL Once you have installed these prerequisites, you can clone the project to your local machine:
git clone https://github.com/ariful305/laravel-CRUD.git
Next, navigate to the project directory and install the required dependencies:
cd laravel-CRUD
composer install
Create a new database for the project and configure the database connection in the .env file:
cp .env.example .env
php artisan key:generate
Then, run the database migrations:
php artisan migrate
You can then start the development server:
php artisan serve