Ekapp/skolehjem/resources/views/admin/users/index.blade.php

120 lines
4.5 KiB
PHP
Raw Normal View History

2020-06-15 06:56:21 +00:00
@extends("admin.layout.base")
@extends("admin.layout.header")
@section("title")
2020-06-16 07:04:25 +00:00
Bruger - Vis
2020-06-15 06:56:21 +00:00
@endsection
2020-06-15 09:29:38 +00:00
@section("path")
2020-06-17 09:28:48 +00:00
<a href="{{ route('users.index') }}" class="text-white">Vis Brugere</a> /
2020-06-15 09:29:38 +00:00
@endsection
2020-06-15 06:56:21 +00:00
2020-06-15 09:29:38 +00:00
@section("content")
<style>
.showUsers {
position: relative;
display: inline-block;
overflow: visible;
}
.showUsers .showUserImages {
visibility: hidden;
width: 250px;
max-height: 500px;
max-width: 300px;
object-fit: cover;
background-color: transparent;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 10;
top: -5px;
right: 105%;
display: block;
}
.showUsers:hover .showUserImages {
visibility: visible;
z-index: 100;
}
.noImages{
cursor: not-allowed;
}
td >
</style>
2020-07-29 11:58:19 +00:00
<div class="row align-items-center">
@if(auth()->user()->can('user.create'))
<a class="btn btn-inline btn-sde-blue mb-0" href="{{ route('users.create') }}"><img src="{{ asset('/images/icons/plus.svg') }}" alt="Create">Opret Bruger</a>
@endif
2020-07-01 07:27:18 +00:00
</div>
2020-09-18 08:04:33 +00:00
<table class="tbl mt-2" id="table_id">
<thead>
2020-06-15 09:29:38 +00:00
<th>Fornavn</th>
<th>Efternavn</th>
<th>Email</th>
<th>Tlf nr</th>
<th>Rolle(r)</th>
<th style="width: 1em;"><img class="w-100" src="{{ asset('/images/icons/eye.svg') }}" alt="ShowImage"></th>
@if(auth()->user()->can('user.edit'))
<th style="width: 1em;"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
@endif
@if(auth()->user()->can('user.delete'))
<th style="width: 1em;"><img class="w-100" src="{{ asset('/images/icons/trashcan.svg') }}" alt="Delete"></th>
@endif
2020-09-18 08:04:33 +00:00
</thead>
<tbody>
@foreach($users as $user)
<tr>
<td>{{ $user->name_first }}</td>
<td>{{ $user->name_last }}</td>
<td>{{ $user->email }}</td>
<td>{{ $user->phone }}</td>
<td>
@for($i = 0; $i < count($user->roles); $i++)
@if(count($user->roles)-1 != $i)
{{$user->roles[$i]->name}},
@else
{{$user->roles[$i]->name}}
@endif
@endfor
</td>
2020-09-18 08:04:33 +00:00
@if($user->resource_id !== null)
<td style="overflow: visible"><a class="showUsers"><img src="{{ asset('/images/icons/eye-dark.svg') }}"><img src="{{ asset(\App\Resource::query()->where("id", "=", $user->resource_id)->first()->filename) }}" class="showUserImages"></a></td>
@else
<td style="overflow: visible"><a class="showUsers noImages"><img src="{{ asset('/images/icons/eye-dark.svg') }}"><img src="" class="showUserImages"></a></td>
@endif
@if(auth()->user()->can('user.edit'))
<td><a href="{{ route("users.edit", [ "user" => $user->id ]) }}"><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
@endif
@if(auth()->user()->can('user.delete'))
<td><form method="post" action="{{ route("users.destroy", [ "user" => $user ]) }}" class="w-100 nostyle">
@csrf
@method("delete")
<button class="w-100 nostyle" onclick="return confirm('Are you sure you want to delete?');" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
</form>
</td>
@endif
</tr>
@endforeach
</tbody>
2020-06-15 09:29:38 +00:00
</table>
2020-09-18 08:04:33 +00:00
@endsection
2020-07-29 07:49:54 +00:00
2020-09-18 08:04:33 +00:00
@section('scripts')
<script>
$(document).ready( function () {
$('#table_id').DataTable({
columnDefs: [
{ orderable: false, targets: [-1, -2, -3] }
]
});
});
</script>
2020-06-15 06:56:21 +00:00
@endsection