@extends('admin::layouts.master') @section('title') @lang('translation.Tests') @endsection @section('content') @component('admin::components.breadcrumb') @slot('li_1') Dashboard @endslot @slot('title') Test Types @endslot @endcomponent @if ($text = Session::get('success')) @elseif ($text = Session::get('error')) @endif
Tests Lists
@if(count($tests) > 0) @foreach($tests as $index => $value) @endforeach
# Name Type Score Names Status Action
{{ $no++ }} {{ $value->name }} {{ $value->testType->name }} {{ $value->scores }} @if ($value->status == 1) Active @elseif ($value->status == 0) Inactive @else Deleted @endif @if ($value->status != 2) @endif
@else

No Data Found

@endif
@endsection