2020-06-29 08:31:24 +00:00
|
|
|
@extends("admin.layout.base")
|
|
|
|
@extends("admin.layout.header")
|
|
|
|
|
|
|
|
@section("title")
|
2020-08-04 13:29:08 +00:00
|
|
|
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")
|
2020-10-21 07:12:53 +00:00
|
|
|
<style>
|
|
|
|
.letterSpaceTable{
|
|
|
|
letter-spacing: 1.2px;
|
|
|
|
}
|
|
|
|
</style>
|
2020-07-01 07:27:18 +00:00
|
|
|
<div class="row align-items-center">
|
2020-08-31 08:57:26 +00:00
|
|
|
@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
|
2020-08-20 12:59:22 +00:00
|
|
|
</div>
|
2020-11-24 12:14:25 +00:00
|
|
|
<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>
|
2020-08-31 08:57:26 +00:00
|
|
|
@if(auth()->user()->can('contact.edit'))
|
2020-11-26 09:19:12 +00:00
|
|
|
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
|
2020-08-31 08:57:26 +00:00
|
|
|
@endif
|
|
|
|
@if(auth()->user()->can('contact.delete'))
|
2020-11-26 09:19:12 +00:00
|
|
|
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/trashcan.svg') }}" alt="Delete"></th>
|
2020-08-31 08:57:26 +00:00
|
|
|
@endif
|
2020-09-18 08:04:33 +00:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
@foreach($contacts as $contact)
|
2020-12-01 11:05:18 +00:00
|
|
|
<tr id="row_{{ $contact->id }}">
|
2020-09-18 08:04:33 +00:00
|
|
|
<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'))
|
2020-12-01 11:05:18 +00:00
|
|
|
<td>
|
|
|
|
@csrf
|
|
|
|
<button class="w-100 nostyle" onclick="delete_contact({{ $contact->id }})"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
2020-09-18 08:04:33 +00:00
|
|
|
</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')
|
2020-08-04 13:29:08 +00:00
|
|
|
<script>
|
2020-09-18 08:04:33 +00:00
|
|
|
$(document).ready( function () {
|
|
|
|
$('#table_id').DataTable({
|
|
|
|
columnDefs: [
|
|
|
|
{ orderable: false, targets: [-1, -2] }
|
|
|
|
]
|
2020-08-04 13:29:08 +00:00
|
|
|
});
|
|
|
|
});
|
2020-12-01 11:05:18 +00:00
|
|
|
|
|
|
|
function delete_contact(id) {
|
|
|
|
var token = $("input[name='_token']").val();
|
|
|
|
|
|
|
|
Swal.fire({
|
|
|
|
title: 'Er du sikker?',
|
|
|
|
text: "Dette kan ikke blive ændret tilbage!",
|
|
|
|
icon: 'warning',
|
|
|
|
showCancelButton: true,
|
|
|
|
confirmButtonColor: '#3085d6',
|
|
|
|
cancelButtonColor: '#d33',
|
|
|
|
confirmButtonText: 'Slet Kontakten',
|
|
|
|
cancelButtonText: 'Annuller'
|
|
|
|
}).then((result) => {
|
|
|
|
if (result.isConfirmed) {
|
|
|
|
$.ajax({
|
|
|
|
type: "POST",
|
|
|
|
url: "contacts/"+id,
|
|
|
|
data:{'_token':token, _method: 'DELETE'},
|
|
|
|
success: function () {
|
|
|
|
$('#table_id').DataTable().row($('#row_'+id)[0]).remove().draw();
|
|
|
|
|
|
|
|
Swal.fire(
|
|
|
|
'Kontakten er slettet!',
|
|
|
|
'',
|
|
|
|
'success'
|
|
|
|
)
|
|
|
|
},
|
|
|
|
error:function (data) {
|
|
|
|
console.log(data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-08-04 13:29:08 +00:00
|
|
|
</script>
|
2020-06-29 08:31:24 +00:00
|
|
|
@endsection
|