Skip to content
Snippets Groups Projects
index.blade.php 1.86 KiB
Newer Older
@extends('layouts.app')

@section('title', 'Feedback')

@section('content')
<div class="container">
    <h1>Feedback</h1>
        <a href="{{action('WowaController@create')}}" class="btn btn-outline-danger">
            <i class="fas fa-calculator"></i> Compute Wowa Weights
        </a>
        <a href="{{action('FeedbackController@populate')}}" class="btn btn-warning">
            <i class="fas fa-grimace"></i> Populate Feedback (Test)
        </a>
        <a href="{{action('FeedbackController@dropFeedbacks')}}" class="btn btn-danger">
            <i class="fas fa-trash-alt">Drop all Feedbacks</i>
        </a>
    <table class="table table-striped">
        <tr>
            <th></th>
            <th>Detector</th>
            <th>Subject</th>
            <th></th>
        </tr>
        @foreach($feedback as $feedback)
            @if($loop->index == 99)
                @break
            @endif
        <tr>
            <td>{!! $feedback->badge() !!}</td>
            <td>{{ $feedback->report()->profile["label"] }}</td>
            <td>{{ $feedback->report()->subject() }}</td>
            <td class="text-right">
                <a class="btn btn-primary btn-sm"
                   href="{{ action('FeedbackController@show', ['feedback' => $feedback]) }}">
                    <i class="fas fa-search"></i> Show
                </a>

                <form method="POST"
                      action="{{ action('FeedbackController@destroy', ['feedback' => $feedback]) }}"
                      style="display: inline-block">
                    {{ csrf_field() }}
                    {{ method_field("DELETE") }}
                    <button class="btn btn-danger btn-sm">
                        <i class="fas fa-times-circle"></i> Delete
                    </button>
                </form>
            </td>
        </tr>
        @endforeach
    </table>
</div>
@endsection