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
42
49
43
50
```
44
51
/**
@@ -71,12 +78,18 @@ php artisan ui vue --auth
71
78
}
72
79
```
73
80
74
-
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
75
84
76
-
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`
77
90
78
91
Congrats! Your blog is ready to use. (URLs are customizable in the config file)
79
-
92
+
80
93
Admin panel URI: `/blog_admin`
81
94
Front URI: `/en/blog`
82
95
@@ -85,15 +98,15 @@ To see package on Packagist click this [Link](https://packagist.org/packages/bin
85
98
### Single Language Version
86
99
To install the single language version of the package use version v8.1x:
0 commit comments