its a Coding Test ....
- Clone GitHub repo for this project locally : 'git clone https://github.com/Heba10/clinics-app.git '
- cd into your project : 'cd Test'
- [Optional]: Checkout the “Start” tag so you have a fresh install of the project (and not the final files) : git checkout tags/start -b tutorial (“tutorial” in this example) to be the name of the working branch you prefer.
- Install Composer Dependencies : 'composer install'
- Create a copy of your .env file : 'cp .env.example .env'
- Generate an app encryption key : 'php artisan key:generate'
- Create an empty database for our application
- In the .env file, add database information to allow Laravel to connect to the database
- Migrate the database : 'php artisan migrate'
10.Seeders : php artisan db:seed --class=ClinicSeeder : php artisan db:seed --class=BranchSeeder
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D