https://github.com/arinzejeffrey-droid/vassolutions
Screening assessment.
https://github.com/arinzejeffrey-droid/vassolutions
Last synced: 3 months ago
JSON representation
Screening assessment.
- Host: GitHub
- URL: https://github.com/arinzejeffrey-droid/vassolutions
- Owner: ArinzeJeffrey-droid
- Created: 2021-03-24T21:33:13.000Z (about 4 years ago)
- Default Branch: development
- Last Pushed: 2021-03-24T21:55:25.000Z (about 4 years ago)
- Last Synced: 2025-01-27T12:49:58.517Z (5 months ago)
- Language: PHP
- Size: 749 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Movie App
The above application is a minimalistic movie app with the following requirements met as requested in the email sent:
- The use of repository pattern as an additional layer between the model
and the controller.
- Use the Eloquent ORM relationships for the entities.
- Represent each of the entities (i.e. users, showtimes, cinemas,
movies) as its own Laravel module .
- Ability for an authenticated User to add a movie to a specific cinema.The application uses a simple UI seeing as the UI is not the focus of the assessment.
## How To Install Locally
- Clone the repository.
- Install composer dependencies *composer install*.
- Create the .env file from .env.example file.
- Generate app encryption key *php artisan key:generate*
- Create database with the name as seen in the .env file.
- Migrate the database *php artisan:migrate*
- Seed the database with the command *php artisan module:seed*
- Serve the application *php artisan serve*