This is a sample Airbnb-like project built with the Laravel framework. It includes features such as:
- Property listings
- Booking system
- User accounts
- Reviews and ratings
- Admin panel for managing properties and bookings
Assuming you've already installed on your machine: PHP (>= 7.0.0), Laravel, Composer and Node.js.
# install dependencies
composer install
npm install
# create .env file and generate the application key
cp .env.example .env
php artisan key:generate
# build CSS and JS assets
npm run dev
# or, if you prefer minified files
npm run prod
Then launch the server:
php artisan serve
The Laravel sample project is now up and running! Access it at http://localhost:8000.