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
- Host: GitHub
- URL: https://github.com/panagiop/larablog
- Owner: panagiop
- Created: 2014-04-21T09:58:07.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-21T10:13:37.000Z (about 11 years ago)
- Last Synced: 2025-02-07T11:34:50.799Z (4 months ago)
- Size: 285 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
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.