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
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
43
49
44
50
```
45
51
/**
@@ -72,12 +78,18 @@ php artisan ui vue --auth
72
78
}
73
79
```
74
80
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
76
84
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`
78
90
79
91
Congrats! Your blog is ready to use. (URLs are customizable in the config file)
80
-
92
+
81
93
Admin panel URI: `/blog_admin`
82
94
Front URI: `/en/blog`
83
95
@@ -113,10 +125,10 @@ You can see the single version in "single-lang" branch.
113
125
- Managing comments and comment approval
114
126
- Other options include using Disqus comments or disabling comments
115
127
116
-
## Recent Changes
128
+
## Recent Changes
117
129
-**9.1.x** Multi language support
118
130
- 8.0.x Compatibility with Laravel 8.x
119
-
131
+
120
132
## What/who this package is for:
121
133
122
134
- For websites running Laravel
@@ -189,7 +201,7 @@ Try adding this to config/app.php:
189
201
- Ensure that /public/blog_images (or whatever directory you set it to in the config) is writable by the server
190
202
- 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.
0 commit comments