@extends('layouts.layout') @section('title', 'Quiz') @section('content')

Quiz Questions List

@if(Session::has('message')) @endif @if(count($quiz)>0) @foreach($quiz as $key=>$item) @canany(['edit_users', 'delete_users']) @endcanany @endforeach @else @endif
# Question Date & Time Status Action
{{ $key+1 }} {{ $item->question }} @if($item->updated_at != '0000-00-00 00:00:00') {{ date("d/m/Y h:i A",strtotime($item->updated_at))}} @else {{ date("d/m/Y h:i A",strtotime($item->created_at))}} @endif @if($item->status=='0') Inactive @endif @if($item->status=='1') Active @endif @can('edit_users') @endcan @include('shared._actions', [ 'entity' => 'quiz_questions', 'id' => $item->id ])

No records found!

Click here to add a new record.
@endsection