@extends('layouts.adminlayout') @section('content')
@if(isset($sdept) && !empty($sdept))
@csrf

Add Edit Department

@else
@csrf

Add New Department

@endif
@foreach($depts as $index => $dept) @endforeach
ID DEPARTMENT NAME INCIDENCE MANAGER ACTION
{{$index + 1}} {{$dept->deptName}} {{$dept->manager()}} Edit
@endsection