This repository provides a Laravel 10 REST APIs and Bootstrap based admin dashboard for a property dealership web application.
Clone the repository using the following command:
git clone https://github.com/arslanstack/property-dealership.git
After cloning the project, navigate into the project directory and install dependencies:
cd property-dealership
composer install
- Copy the example .env file:
cp .env.example .env
- Generate the application key:
php artisan key:generate
- Update the .env file: Open the .env file in a text editor and update the necessary configuration values, such as database connection details. Example:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=property_dealership
DB_USERNAME=root
DB_PASSWORD=
-
Create a new MySQL database: Create new database using phpmyadmin or mysql workbench
-
Run the migrations:
php artisan migrate
Start the Laravel server and compile assets:
php artisan serve
After implementing a feature or fix, use the following commands to commit and push your changes:
git add .
git commit -m "Describe the feature"
git push -u origin