Skip to content

Commit d79786d

Browse files
authored
Merge pull request #82 from nebucaz/master
README update
2 parents 4842bb2 + a14f1dc commit d79786d

File tree

1 file changed

+22
-10
lines changed

1 file changed

+22
-10
lines changed

README.md

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Incredible features with a lightweight laravel blog package. I highly recommend
1717
## Outstanding Features
1818
- Fulltext Search - search throughout all blog posts
1919
- Multi Level Category - nested sets using Baum
20-
- Multi Language Support
20+
- Multi Language Support
2121

2222
### Quick and easy installation (Multi-lang version)
2323
1- Install via composer
@@ -31,15 +31,21 @@ composer require laravel/ui
3131
php artisan ui vue --auth
3232
```
3333

34-
2- Run the following two commands to copy config file, migration files, and view files
34+
2- Scaffold
35+
36+
```
37+
npm install && npm run build
38+
```
39+
40+
3- Run the following two commands to copy config file, migration files, and view files
3541

3642
`php artisan vendor:publish --provider="BinshopsBlog\BinshopsBlogServiceProvider"`
3743

38-
3- Execute migrations to create tables
44+
4- Execute migrations to create tables
3945

4046
`php artisan migrate;`
4147

42-
4- You must add one method to your \App\User (in laravel 8 \App\Models\User) model. As the name of this method shows it determines which user can manage posts. Place your logic there
48+
5- You must add one method to your \App\User (in laravel 8 \App\Models\User) model. As the name of this method shows it determines which user can manage posts. Place your logic there
4349

4450
```
4551
/**
@@ -72,12 +78,18 @@ php artisan ui vue --auth
7278
}
7379
```
7480

75-
5- Create a directory in `public/` named `blog_images`
81+
6- Create a directory in `public/` named `blog_images`
82+
83+
7- Start the server
7684

77-
6- Login as admin and setup your package: `/blog_admin/setup`
85+
```
86+
php artisan serve
87+
```
88+
89+
8- Login as admin and setup your package: `/blog_admin/setup`
7890

7991
Congrats! Your blog is ready to use. (URLs are customizable in the config file)
80-
92+
8193
Admin panel URI: `/blog_admin`
8294
Front URI: `/en/blog`
8395

@@ -113,10 +125,10 @@ You can see the single version in "single-lang" branch.
113125
- Managing comments and comment approval
114126
- Other options include using Disqus comments or disabling comments
115127

116-
## Recent Changes
128+
## Recent Changes
117129
- **9.1.x** Multi language support
118130
- 8.0.x Compatibility with Laravel 8.x
119-
131+
120132
## What/who this package is for:
121133

122134
- For websites running Laravel
@@ -189,7 +201,7 @@ Try adding this to config/app.php:
189201
- Ensure that /public/blog_images (or whatever directory you set it to in the config) is writable by the server
190202
- You might need to set a higher memory limit, or upload smaller image files. This will depend on your server. I've used it to upload huge (10mb+) jpg images without problem, once the server was set up correctly to handle larger file uploads.
191203

192-
## Version History
204+
## Version History
193205
- **9.2.x** Stable version of package
194206
- 9.0.x Multi-language support beta release
195207
- 8.0.x Compatibility with Laravel 8

0 commit comments

Comments
 (0)