Skip to content

Bellov/blog

Repository files navigation

Laravel 5.7 Blog application with CMS

Setup:

1. Clone the repository

git clone https://github.com/Bellov/blog

2. Configure PostgreSQL database

  • Create a database named blog_cms.

Command line:

psql postgres
CREATE DATABASE blog_cms
GRANT ALL PRIVILEGES ON DATABASE blog_cms TO your 'user name';
\q

3. Run the application

Mac Os, Ubuntu and windows users continue here:

  • Open the console and cd your project root directory
composer install
php artisan key:generate
  • Then open database.php and .env and change username and password as per PGSQL installation.
DB_CONNECTION=pgsql
DB_HOST=hostname
DB_PORT=5432
DB_DATABASE=Your database name
DB_USERNAME=Your database username
DB_PASSWORD=Your database password
php artisan migrate
php artisan db:seed
php artisan serve

Tools:

Mailchimp

Disqus

You can now access the project at localhost:8000

Home Page

Login to Blog CMS


Admin login credentials

email password
[email protected] password

! [Screenshots] (Screenshot-2018-10-21-at-19-00-03 Screenshot-2018-10-21-at-19-00-25

Screenshot-2018-10-21-at-19-00-46 Screenshot-2018-10-21-at-19-02-48

Screenshot-2018-10-21-at-19-03-29 Screenshot-2018-10-21-at-19-03-44

Screenshot-2018-10-21-at-19-04-01 Screenshot-2018-10-21-at-19-05-27

)