@extends('backend.layouts.app') @section('title', __('labels.backend.faqs.title').' | '.app_name()) @section('content')
@lang('labels.backend.questions_options.fields.question') | @lang('labels.backend.questions_options.fields.option_text') | @lang('labels.backend.questions_options.fields.correct') | @if( request('show_deleted') == 1 )@lang('labels.general.actions') | @else@lang('labels.general.actions') | @endif||
---|---|---|---|---|---|---|
{{ ($questions_option->question) ? $questions_option->question->question : '' }} | {!! $questions_option->option_text !!} | {{ Form::checkbox("correct", 1, $questions_option->correct == 1 ? true : false, ["disabled"]) }} | @if( request('show_deleted') == 1 ){{trans('strings.backend.general.app_restore')}} {{trans('strings.backend.general.app_permadel')}} @else | @can('questions_option_view') @endcan @can('questions_option_edit') @endcan @can('questions_option_delete') @endcan | @endif||
@lang('strings.backend.general.app_no_entries_in_table') |
@lang('labels.backend.tests.fields.course') | @lang('labels.backend.tests.fields.lesson') | @lang('labels.backend.tests.fields.title') | @lang('labels.backend.tests.fields.questions') | @lang('labels.backend.tests.fields.published') | @if( request('show_deleted') == 1 )@lang('labels.general.actions') | @else@lang('labels.general.actions') | @endif|||
---|---|---|---|---|---|---|---|---|---|
{{ ($test->course) ? $test->course->title : '' }} | {{ ($test->lesson) ? $test->lesson->title : '' }} | {{ $test->title }} | @foreach ($test->questions as $singleQuestions) {{ $singleQuestions->question }} @endforeach | {{ Form::checkbox("published", 1, $test->published == 1 ? true : false, ["disabled"]) }} | @if( request('show_deleted') == 1 ){{trans('strings.backend.general.app_restore')}} {{trans('strings.backend.general.app_permadel')}} | @else@can('test_view') @endcan @can('test_edit') @endcan @can('test_delete') @endcan | @endif|||
@lang('strings.backend.general.app_no_entries_in_table') |