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

71 lines
2.8 KiB
PHP
Raw Normal View History

2020-06-29 08:31:24 +00:00
@extends("admin.layout.base")
@extends("admin.layout.header")
@section("title")
Kontakt - Vis
2020-06-29 08:31:24 +00:00
@endsection
@section("path")
2020-06-30 09:38:28 +00:00
<a href="{{ route('contacts.index', [ 'contacts' => $contacts ]) }}" class="text-white">Vis Kontakter</a> /
2020-06-29 08:31:24 +00:00
@endsection
@section("content")
<style>
.letterSpaceTable{
letter-spacing: 1.2px;
}
</style>
2020-07-01 07:27:18 +00:00
<div class="row align-items-center">
@if(auth()->user()->can('contact.create'))
<a class="btn btn-inline btn-sde-blue mb-0" href="{{ route('contacts.create') }}"><img src="{{ asset('/images/icons/plus.svg') }}" alt="Create">Opret Kontakt</a>
@endif
</div>
<table class="tbl mt-2 letterSpaceTable fixOverflow" id="table_id">
2020-09-18 08:04:33 +00:00
<thead>
2020-06-29 08:31:24 +00:00
<th>Kontakt Navn</th>
<th>Titel</th>
<th>E-mail</th>
<th>Tlf</th>
@if(auth()->user()->can('contact.edit'))
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
@endif
@if(auth()->user()->can('contact.delete'))
<th class="w-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($contacts as $contact)
<tr>
<td>{{ $contact->contactname }}</td>
<td>{{ $contact->title }}</td>
<td>{{ $contact->email }}</td>
<td>{{ $contact->phone }}</td>
@if(auth()->user()->can('contact.edit'))
<td><a href="{{ route("contacts.edit", [ "contact" => $contact ]) }}"><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
@endif
@if(auth()->user()->can('contact.delete'))
<td><form method="post" action="{{ route("contacts.destroy", [ "contact" => $contact ]) }}" 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-29 08:31:24 +00:00
</table>
2020-09-18 08:04:33 +00:00
@endsection
@section('scripts')
<script>
2020-09-18 08:04:33 +00:00
$(document).ready( function () {
$('#table_id').DataTable({
columnDefs: [
{ orderable: false, targets: [-1, -2] }
]
});
});
</script>
2020-06-29 08:31:24 +00:00
@endsection