Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wapnen/hotel-booking

Laravel, Vue app backend/admin panel for hotel booking
https://github.com/wapnen/hotel-booking

Last synced: 26 days ago
JSON representation

Laravel, Vue app backend/admin panel for hotel booking

Awesome Lists containing this project

README

        

## Prerequisites


  • After cloning this repository, go to the root folder, run the following command/s,
    ```
    composer install
    composer update
    ```

  • Rename .env.example to .env and provide your database details there.

  • Run the following command to migrate the Database
    ```
    php artisan migrate
    ```

    Seed the hotel using the following command

    ```
    php artisan db:seed
    ```

    The project uses jwt for authentication. Run the following command to generate a jwt secret
    ```
    php artisan jwt:secret
    ```

  • Laravel manages the frontend tools like vue using npm. So run npm install to get all the required dependencies.

  • Run
    php artisan key:generate