28 lines
600 B
PHP
28 lines
600 B
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")
|
||
|
<table class="tbl">
|
||
|
<tr>
|
||
|
<th>Feedback Besked</th>
|
||
|
<th>Ris el. Ros</th>
|
||
|
</tr>
|
||
|
@foreach($feedback as $fb)
|
||
|
<tr>
|
||
|
<td>{{ $fb->message }}</td>
|
||
|
<td>{{ $fb->suggestion_form }}</td>
|
||
|
</tr>
|
||
|
@endforeach
|
||
|
</table>
|
||
|
|
||
|
{{ $feedback->links() }}
|
||
|
@endsection
|