@extends('layouts.default_module') @section('module_name') List of Quiz in FV LMS PRO @stop @section('add_btn') {{-- {{dd($listofquiz)}} --}} {!! Form::open(['method' => 'get', 'url' => ['admin/quiz/create'], 'files' => true]) !!} {{-- --}} {!! Form::submit('Add Quiz', ['class' => 'btn btn-success pull-right']) !!} {!! Form::close() !!} @stop @section('table') {{--
--}} Name Details Question Edit Delete @foreach ($quiz as $key => $q) {{ ucwords($q->name) }} {{ ucwords($q->detail) }} question {!! link_to_action('Admin\QuizController@edit', 'Edit', array($q->id), array('class' => 'badge bg-info')) !!} {!! Form::open(['method' => 'POST', 'route' => ['quiz.delete', $q->id]]) !!} {!! $q->deleted_at?'Activate':'Delete' !!} {!! Form::close() !!} @endforeach @section('pagination') {!! $quiz->render() !!}
{!! Form::open(['method' => 'get', 'route' => ['dashboard']]) !!} {!! Form::submit('Cancel', ['class' => 'btn btn-default btn-block btn-lg btn-parsley']) !!} {!! Form::close() !!}
@endsection @stop