@extends('layouts/contentNavbarLayout')
@section('title', 'Category Quiz ')
@section('content')
| title en |
title ar |
Score total |
Enabled |
Order |
Actions |
@forelse ($categoryQuizs as $entity )
| {{ $entity->title_en }} |
{{ $entity->title_ar }} |
{{ $entity->score_total }} |
@if( $entity->enabled == 1 )
Active
@else
Inactive
@endif
|
{{ $entity->order_show }} |
|
@empty
|
No secteur found !
|
@endforelse
@endsection