28harishkumar / laravel_blog

A blog demo in Laravel

Home Page:https://www.flowkl.com/tutorial/web-development/simple-blog-application-in-laravel-7/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

simple Blog applicatoin in laravel


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

Demo is at Show me demo

Install

download source code and add .env file to blog directory. Config .env file as in part-1 of tutorials.

Tutorials

Tutorials are on Flowkl Website

Database tables

  • users (default + role)
  • posts (id, author, title, body, slug, published_on, last_modified, active)
  • comments (id, on_post, from_user, body, at_time)

Quick install without Tutorial

If you want to skip the tutorials and get this up and running quickly, follow these instructions:

  1. Clone the repository

git clone https://github.com/28harishkumar/blog.git [your project name]

  1. 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
  1. run composer install and npm install

  2. Ensure that the permissions on the storage folder are set correctly. You will get a 500 error otherwise.

  3. 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).

About

A blog demo in Laravel

https://www.flowkl.com/tutorial/web-development/simple-blog-application-in-laravel-7/


Languages

Language:PHP 92.7%Language:HTML 7.2%Language:Vue 0.1%