This repo is archived check latest version https://github.com/28harishkumar/laravel_blog
what is application?
- It is simple blogging app.
- users can login/register
- users can write/update blogs
- users can read blogs
- users can comment on blogs
Demo is at Show me demo
download source code and add .env file to blog directory. Config .env file as in part-1 of tutorials.
Tutorials are on Find All Together Website
- users (default + role)
- posts (id, author, title, body, slug, published_on, last_modified, active)
- comments (id, on_post, from_user, body, at_time)
If you want to skip the tutorials and get this up and running quickly, follow these instructions:
- Clone the repository
git clone https://github.com/28harishkumar/blog.git [your project name]
- Follow the Setup database instructions which includes:
- Edit the .env.example file to match your database and rename to .env
- Set up and run the migrations
-
Ensure that the permissions on the storage folder are set correctly. You will get a 500 error otherwise.
-
Ensure that you have set the correct image path for justboil.me to the appropriate folder or just use the default /images and make sure that folder has the correct permissions to upload images (usually owned by the webserver user).