@extends('layouts.app') @section('title', __('Department')) @section('content')
@include('layouts.leftside-menubar')
@include('components.pages-bar',['pageTitle' =>''. trans('Academics').' / '. trans('Department').'']) @include('components.sectionbar.course-bar',['departments'=>$departments])
@if ($departments->count())
{{----}} @foreach($departments as $department) {{-- --}} @endforeach
# @lang('Name') @lang('Status') @lang('Edit')@lang('Delete')
{{$loop->index+1}} {{$department->department_name}} {{status($department->status)}} @lang('Edit') @lang('Delete')
@else @lang('No Related Data Found.') @endif
@endsection