1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace Xetaravel\Livewire\Admin\Permission; |
6
|
|
|
|
7
|
|
|
use Illuminate\Contracts\View\Factory; |
8
|
|
|
use Illuminate\Contracts\View\View; |
9
|
|
|
use Illuminate\Foundation\Application; |
10
|
|
|
use Illuminate\Foundation\Auth\Access\AuthorizesRequests; |
11
|
|
|
use Livewire\Attributes\On; |
12
|
|
|
use Livewire\Component; |
13
|
|
|
use Masmerise\Toaster\Toastable; |
14
|
|
|
use Spatie\Permission\Models\Permission; |
|
|
|
|
15
|
|
|
use Spatie\Permission\Models\Role as RoleModel; |
16
|
|
|
use Xetaravel\Livewire\Forms\RoleForm; |
17
|
|
|
|
18
|
|
|
class CreateRole extends Component |
19
|
|
|
{ |
20
|
|
|
use AuthorizesRequests; |
21
|
|
|
use Toastable; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* The form used to create/update a model. |
25
|
|
|
* |
26
|
|
|
* @var RoleForm |
27
|
|
|
*/ |
28
|
|
|
public RoleForm $form; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* Used to show the create modal. |
32
|
|
|
* |
33
|
|
|
* @var bool |
34
|
|
|
*/ |
35
|
|
|
public bool $showModal = false; |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* Create a blank model and assign it to the model. (Used in create modal) |
39
|
|
|
* |
40
|
|
|
* @return void |
41
|
|
|
*/ |
42
|
|
|
#[On('create-role')] |
43
|
|
|
public function createPermission(): void |
44
|
|
|
{ |
45
|
|
|
$this->authorize('create', RoleModel::class); |
46
|
|
|
|
47
|
|
|
$this->form->reset(); |
48
|
|
|
|
49
|
|
|
$this->showModal = true; |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
/** |
53
|
|
|
* Validate and save the model. |
54
|
|
|
* |
55
|
|
|
* @return void |
56
|
|
|
*/ |
57
|
|
|
public function create(): void |
58
|
|
|
{ |
59
|
|
|
$this->authorize('create', RoleModel::class); |
60
|
|
|
|
61
|
|
|
$this->validate(); |
62
|
|
|
|
63
|
|
|
$role = $this->form->create(); |
64
|
|
|
|
65
|
|
|
$this->showModal = false; |
66
|
|
|
|
67
|
|
|
redirect() |
68
|
|
|
->route('admin.role.index') |
|
|
|
|
69
|
|
|
->success("The role $role->name has been created successfully !"); |
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
public function render(): View|Application|Factory|\Illuminate\View\View |
73
|
|
|
{ |
74
|
|
|
// Select all permissions except `bypass login` which is handled by a checkbox. |
75
|
|
|
$permissions = Permission::where('name', '<>', 'bypass login') |
76
|
|
|
->select(['name', 'description']) |
77
|
|
|
->orderBy('name') |
78
|
|
|
->get() |
79
|
|
|
->toArray(); |
80
|
|
|
|
81
|
|
|
return view('livewire.admin.permission.create-role', [ |
82
|
|
|
'permissions' => $permissions, |
83
|
|
|
]); |
84
|
|
|
} |
85
|
|
|
} |
86
|
|
|
|
Let?s assume that you have a directory layout like this:
and let?s assume the following content of
Bar.php
:If both files
OtherDir/Foo.php
andSomeDir/Foo.php
are loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php
However, as
OtherDir/Foo.php
does not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php
, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: