91 lines
3.0 KiB
PHP
91 lines
3.0 KiB
PHP
@extends("admin.layout.base")
|
|
@extends("admin.layout.header")
|
|
|
|
@section("title")
|
|
Feedback - Vis
|
|
@endsection
|
|
|
|
@section("path")
|
|
<a href="{{ route('feedbacks.index') }}" class="text-white">Vis Feedback</a> /
|
|
@endsection
|
|
|
|
|
|
@section("content")
|
|
<style>
|
|
.letterSpaceTable{
|
|
letter-spacing: 1.2px;
|
|
}
|
|
</style>
|
|
<table class="tbl letterSpaceTable" id="table_id">
|
|
<thead>
|
|
<th class="w-6em">Dato</th>
|
|
<th>Feedback Besked</th>
|
|
<th class="w-7em">Feedback type</th>
|
|
@if(auth()->user()->can('feedback.delete'))
|
|
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/trashcan.svg') }}" alt="Delete"></th>
|
|
@endif
|
|
</thead>
|
|
<tbody>
|
|
@foreach($feedback as $fb)
|
|
<tr id="row_{{ $fb->id }}">
|
|
<td>{{ date('d-m-Y', strtotime($fb->created_at)) }}</td>
|
|
<td>{{ $fb->message }}</td>
|
|
<td>{{ $fb->suggestion_form }}</td>
|
|
@if(auth()->user()->can('feedback.delete'))
|
|
<td>
|
|
@csrf
|
|
<a class="w-100 nostyle" onclick="delete_feedback({{ $fb->id }})"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></a>
|
|
</td>
|
|
@endif
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
@endsection
|
|
@section('scripts')
|
|
<script>
|
|
$(document).ready( function () {
|
|
$('#table_id').DataTable({
|
|
columnDefs: [
|
|
{ orderable: false, targets: [-1] }
|
|
]
|
|
});
|
|
});
|
|
|
|
function delete_feedback(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 Feedback',
|
|
cancelButtonText: 'Annuller'
|
|
}).then((result) => {
|
|
if (result.isConfirmed) {
|
|
$.ajax({
|
|
type: "POST",
|
|
url: "feedbacks/"+id,
|
|
data:{'_token':token, _method: 'DELETE'},
|
|
success: function () {
|
|
$('#table_id').DataTable().row($('#row_'+id)[0]).remove().draw();
|
|
|
|
Swal.fire(
|
|
'Feedbacken er slettet!',
|
|
'',
|
|
'success'
|
|
)
|
|
},
|
|
error:function (data) {
|
|
console.log(data);
|
|
}
|
|
});
|
|
}
|
|
})
|
|
}
|
|
</script>
|
|
@endsection
|