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

No Data Found

@endif
@endsection @section('script') @endsection