We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41964e8 commit eb33f73Copy full SHA for eb33f73
README.md
@@ -45,18 +45,18 @@ class User extends Authenticatable
45
use HasRoles;
46
}
47
```
48
-#Applly Rules on Route
+#To see demo got to ```/admin/permissions```
49
50
+# Note : Before Install and use this package run below command
51
+Before Laravel version 6.0
52
-Route::group(['middleware'=>['role:admin|manager']],function(){
- Route::get('/permissions', function(){
53
- return "Permission Working";
54
- });
55
-});
+php artisan make:auth
56
57
-
58
-# Note : Before Install and use this package run below command
+After Laravel Version
59
60
61
-php artisan make:auth
+1. composer require laravel/ui
+2. php artisan ui vue --auth
+3. npm install
+4. npm run watch
62
0 commit comments