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