-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
54f61b3
commit d3b11a4
Showing
1 changed file
with
23 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,16 @@ | ||
# blog | ||
A nice blog system with laravel 5 and laravelpanel | ||
|
||
## Demo | ||
You can check the [live demo here](http://demo.serverfire.net/blog) and [live admin demo here](http://demo.serverfire.net/panel) . | ||
User: [email protected] | ||
Pass: 12345 | ||
|
||
## Screen shot | ||
- This is a custom CRUD with few lines of code : | ||
![Gallery](http://laravelpanel.com/assets/img/create-gallery-2.png) | ||
![dashboard of panel](https://raw.githubusercontent.com/serverfireteam/panel/master/public/img/serverfire-panel-dashboard.jpg) | ||
![Edit Pages](https://raw.githubusercontent.com/serverfireteam/panel/master/public/img/serverfire-panel-crud-edit.jpg) | ||
|
||
##Installations for laravel 5 | ||
Note: if you face any problem in any of the steps you should report it at [github](https://github.com/serverfireteam/blog/issues/new) | ||
|
@@ -9,11 +19,19 @@ Note: if you face any problem in any of the steps you should report it at [githu | |
1. First you need to create a laravel 5 project | ||
|
||
2. Add our package to require section of composer : | ||
|
||
for laravel 5.2 | ||
```json | ||
{ | ||
"require": { | ||
"serverfireteam/blog": "2.*" | ||
}, | ||
} | ||
``` | ||
for laravel 5.1 | ||
```json | ||
{ | ||
"require": { | ||
"serverfireteam/blog": "dev-master" | ||
"serverfireteam/blog": "1.*" | ||
}, | ||
} | ||
``` | ||
|
@@ -35,7 +53,9 @@ Note: if you face any problem in any of the steps you should report it at [githu | |
|
||
``` | ||
|
||
6. Go to your domain.com/public/panel and you can login with the following username and password : | ||
6. Go to your domain.com/panel and you can login with the following username and password : | ||
|
||
user : [email protected] | ||
password : 12345 | ||
|
||
7. check your blog at domain.com/blog |