27 lines
1009 B
PHP
27 lines
1009 B
PHP
<tr>
|
|
<td>
|
|
{{ $member->name }}</th>
|
|
<td>{{ $member->email }}</td>
|
|
<td>
|
|
{{ data_get($member, 'pivot.role') }}</td>
|
|
<td>
|
|
{{-- TODO: This is not good --}}
|
|
@if (auth()->user()->isAdminFromSession())
|
|
@if ($member->id !== auth()->user()->id)
|
|
@if (data_get($member, 'pivot.role') !== 'owner')
|
|
@if (data_get($member, 'pivot.role') !== 'admin')
|
|
<x-forms.button wire:click="makeAdmin">Convert to Admin</x-forms.button>
|
|
@else
|
|
<x-forms.button wire:click="makeReadonly">Convert to Member</x-forms.button>
|
|
@endif
|
|
<x-forms.button wire:click="remove">Remove</x-forms.button>
|
|
@else
|
|
<x-forms.button disabled>Remove</x-forms.button>
|
|
@endif
|
|
@else
|
|
<x-forms.button disabled>Remove</x-forms.button>
|
|
@endif
|
|
@endif
|
|
</td>
|
|
</tr>
|