roles
This commit is contained in:
6
resources/views/livewire/team/invite-link.blade.php
Normal file
6
resources/views/livewire/team/invite-link.blade.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<div>
|
||||
<form wire:submit.prevent='inviteByLink' class="flex items-center gap-2">
|
||||
<x-forms.input id="email" type="email" name="email" placeholder="Email" />
|
||||
<x-forms.button type="submit">Invite with link</x-forms.button>
|
||||
</form>
|
||||
</div>
|
||||
@@ -1,17 +1,25 @@
|
||||
<tr class="border-coolgray-200">
|
||||
<th class="text-warning">{{ $member->id }}</th>
|
||||
<td>{{ $member->name }}</td>
|
||||
{{-- <th class="text-warning">{{ $member->id }}</th> --}}
|
||||
<th>{{ $member->name }}</th>
|
||||
<td>{{ $member->email }}</td>
|
||||
<td>{{ data_get($member, 'pivot.role') }}</td>
|
||||
<td>
|
||||
{{-- @if (auth()->user()->isAdmin())
|
||||
<x-forms.button wire:click="makeAdmin">Make admin</x-forms.button>
|
||||
@else
|
||||
<x-forms.button disabled>Make admin</x-forms.button>
|
||||
@endif --}}
|
||||
@if ($member->id !== auth()->user()->id)
|
||||
<x-forms.button wire:click="remove">Remove</x-forms.button>
|
||||
@else
|
||||
<x-forms.button disabled>Remove</x-forms.button>
|
||||
{{-- TODO: This is not good --}}
|
||||
@if (auth()->user()->isAdmin())
|
||||
@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">Make admin</x-forms.button>
|
||||
@else
|
||||
<x-forms.button wire:click="makeReadonly">Make readonly</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>
|
||||
|
||||
Reference in New Issue
Block a user