@extends('admin.dashboard') @section('title', 'Answers') @section('stylesheets') @endsection @section('content')

Dashboard OPALESCE Version 1.0

{!! Breadcrumbs::render('answers') !!}

Data Table With All Answers

@foreach ($answers as $answer) @endforeach
Question Answer Correct Created CRUD
{{$answer->question->question}} {{$answer->answer}} {{$answer->correct == 1 ? "Yes" : "No"}} {{ date('j M. Y', strtotime($answer->created_at)) }} {!! Form::open(['route' => ['admin.answer.destroy', $answer->id], 'method' => 'DELETE', 'id' => 'form-delete-m-'.$answer->id, 'style'=>'display:inline-block']) !!} {!! Form::close() !!}
Question Answer Correct Created CRUD
@endsection @section('javascripts') @endsection