Laravel is an example of a simple blog when I try to learn.
- Install laravel environment
- clone this repo
- cp .env.exampple .env
- update .env file
- php artisan migrate
- php artisan db:seed
- php artisan serve
- open localhost:8000
- Add new post, update, destroy
- Check user authorizations
- Check user is admin?
- Add new comment
- Simple form validation
- Add photo upload Aws S3
- Api
- vs..
- php artisan serve
- php artisan migrate
- php artisan make:controller CommentController
- php artisan make:model Comment
- php artisan make:migration create_comments_table
- barisesen Barış Esen - creator, maintainer