You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -93,21 +92,21 @@ To see the Bagisto version of this package go to `bagisto-compatible` branch
93
92
94
93
## How to customise the blog views/templates
95
94
96
-
After doing the correct `vendor:publish`, all of the default template files will be found in /resources/views/vendor/hessamcms/ and are easy to edit to match your needs.
95
+
After doing the correct `vendor:publish`, all of the default template files will be found in /resources/views/vendor/binshopsblog/ and are easy to edit to match your needs.
97
96
98
97
### Customizing admin views
99
98
If you need to customize the admin view, just copy the files from
Then you can modify them just like any other view file.
104
103
105
104
## Routes
106
105
107
-
It will auto set all required routes (both public facing, and admin backend). There are some config options (such as changing the /blog/ url to something else), which can be done in the hessamcms.php file.
106
+
It will auto set all required routes (both public facing, and admin backend). There are some config options (such as changing the /blog/ url to something else), which can be done in the binshopsblog.php file.
108
107
109
108
## Config options
110
-
All config options have comments which describe what they do. Please just refer to the `hessamcms.php` file in your /config/ dir.
109
+
All config options have comments which describe what they do. Please just refer to the `binshopsblog.php` file in your /config/ dir.
111
110
112
111
### Custom User Model
113
112
You can change the default user model through the config file.
@@ -122,7 +121,7 @@ Add these (and an Event Listener) to your `EventServiceProvider.php` file to mak
122
121
123
122
There is a built in captcha (anti spam comment) system built in, which will be easy for you to replace with your own implementation.
124
123
125
-
Please see [this Captcha docs](https://hessam.binshops.com/laravel-blog-package#captcha) for more details.
124
+
Please see [this Captcha docs](https://binshops.binshops.com/laravel-blog-package#captcha) for more details.
126
125
127
126
## Image upload errors
128
127
@@ -161,7 +160,7 @@ Try adding this to config/app.php:
161
160
- 3.0.2 - fixed default medium image size (changed to 600x400)
162
161
- 3.0.1 - replaced all short tags (<?) with full opening ones (<?php)
163
162
- 3.0 - Added separate functionality for uploading images (and save some meta data in db)
164
-
- 2.1 - added 'short_description' to db + form, and HessamCMSPost::generate_introduction() method will try and use this to generate intro text.
163
+
- 2.1 - added 'short_description' to db + form, and BinshopsBlogPost::generate_introduction() method will try and use this to generate intro text.
165
164
- 2.0 - added full text search (enable it via the config file - it is disabled by default).
166
165
- 1.2 - added WYSIWYG, few smaller changes
167
166
- 1.1.1 - added basic captcha
@@ -170,7 +169,7 @@ Try adding this to config/app.php:
Copy file name to clipboardExpand all lines: composer.json
+11-10Lines changed: 11 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
{
2
-
"name": "hessam/laravel-blogger",
2
+
"name": "binshops/laravel-blog",
3
3
"keywords": [
4
4
"laravel",
5
5
"blog",
@@ -12,19 +12,20 @@
12
12
"posts",
13
13
"news",
14
14
"update",
15
-
"hessam-blog"
15
+
"laravel blog",
16
+
"binshops"
16
17
],
17
18
"description": "Simple blog package (with admin panel) for Laravel (6.x and 7.x). Includes all views, controllers, routes and can add a blog to any existing Laravel app. Fully customisable blog (view, urls, and many other options). Includes image uploads and a pretty admin interface to manage your blog. Defaults to /blog but you can change it to anything.",
0 commit comments