This is an example web application project. This web application allows the user to interact with a database of imaginary properties. Users can use interactive pagination and filters to view a collection of thousands of properties.
Follow the instructions below to install the project and get started.
- Clone the project repository onto your machine.
- Open command prompt and navigate to the
/src
folder within the repository. - Run the command
npm install
to install the required NPM packages. - Run the command
composer install
to install the required composer packages. - In file explorer, copy the
.env.example
file and configure the database properties. - In command prompt, run the command
php artisan key:generate
to generate the application key. - Run the command
php artisan --migrate:fresh --seed
to run migrations and seed the database. - Run the commands
npm run dev
andphp artisan serve
simultaneously to host the project. A link to the locally hosted website will appear in the console which you can click.