Skip to content

Commit

Permalink
Fix linux command name issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
maab16 committed Oct 4, 2022
1 parent 9a55cda commit 757feba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions database/seeds/UsersSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
use CodexShaper\Permission\Models\Role;
use CodexShaper\Permission\Models\User;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\Hash;

class UsersSeeder extends Seeder
{
Expand Down
2 changes: 1 addition & 1 deletion src/PermissionServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ protected function registerPublish()
__DIR__.'/../config/permission.php' => config_path('permission.php'),
],
'permission.seeds' => [
__DIR__."/../database/seeds/" => database_path('seeds'),
__DIR__."/../database/seeds/" => database_path('seeders'),
],
'permission.views' => [
__DIR__.'/../resources/views' => resource_path('views/vendor/permissions/views'),
Expand Down

0 comments on commit 757feba

Please sign in to comment.