@extends('layouts.admin_layout') @section('content')

Manage Department

@if(Session::has('success'))

×{{ Session::get('success') }}

@endif @if(Session::has('error'))

{{ Session::get('error') }}

@endif

Department Lists

Add
@php $i=1;@endphp @foreach($departments as $department) @endforeach
# Sorting Department Name Status Action
{{$i++}} {{$department->sorting}} {{$department->department_name}} @if($department->status == 1) Active @else In-Active@endif
{{ method_field('DELETE') }}{{csrf_field()}}
@endsection