To demonstrate my ability to setup Laravel on local machine and to code CRUDE operations: to create user registration, login and logout.
- Fork this repository to your remote repo.
- Clone remote repo to your local environment.
- Copy .env.example into a new .env file at project root.
- Configure DB in .env
- Install dependencies by executing:
- composer update
- npm install
- On command-line execute:
- npm run dev
- php artisan serve
- Open browser and navigate to http://127.0.0.1:8000
- Installed Laravel, including MySQL on my local machine successfully
- Created minimum number of web pages immitating crudely Facebook.
- Applied MVC and developed models, view blade templates, and controllers.
- Developed user registration, login and logout.
- Developed basic CRUD operations in Laravel.
- Designed business logic and basic styles.
- Followed Brad Schiff Youtube tutorial on Laravel.
- Utilized Git version control.