Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 795 Bytes

readme.md

File metadata and controls

36 lines (29 loc) · 795 Bytes

Simple Laravel Blog

Laravel is an example of a simple blog when I try to learn.

Installation

  • 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

Features

  • Add new post, update, destroy
  • Check user authorizations
  • Check user is admin?
  • Add new comment
  • Simple form validation

Todo list

  • Add photo upload Aws S3
  • Api
  • vs..

Useful commands

  • php artisan serve
  • php artisan migrate
  • php artisan make:controller CommentController
  • php artisan make:model Comment
  • php artisan make:migration create_comments_table

Contributors

  • barisesen Barış Esen - creator, maintainer