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

No Data Found

@endif
@endsection