An open API service indexing awesome lists of open source software.

https://github.com/panagiop/larablog

A simple blog made with Laravel 4.1 and Bootstrap 3
https://github.com/panagiop/larablog

Last synced: 3 months ago
JSON representation

A simple blog made with Laravel 4.1 and Bootstrap 3

Awesome Lists containing this project

README

        

larablog
========

A simple blog made with Laravel 4.1 and Bootstrap 3. A user can create an account and create/read/update/delete posts selecting the category in which will be residing in. A user can also read other user's posts.

As far as it concerns the database schema, the following relationships applied:

User - Post (One-To-Many)

Post - Tag (Many-To-many)

Post - Text (One-To-One)

Category - Post (One-To-Many)

Installation steps


1) Clone the repo

2) Change the /config/database.php file according to your db settings

3) Run the following command (in application's root folder): php artisan migrate

4) Same as the previous step run the following command: php artisan db:seed

5) Login with username: [email protected] and password: 123456 or with username: [email protected] and password: 123456

6) Go to "create a new post" to create a new post.