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
43
+
35
44
```
36
45
/**
37
46
* Enter your own logic (e.g. if ($this->id === 1) to
@@ -62,9 +71,13 @@ php artisan ui vue --auth
62
71
return false;
63
72
}
64
73
```
74
+
65
75
5- Create a directory in `public/` named `blog_images`
76
+
66
77
6- Login as admin and setup your package: `/blog_admin/setup`
78
+
67
79
- Congrats! Your blog is ready to use. (URLs are customizable in the config file)
0 commit comments