@extends('layouts.admin') @section('title', 'Department List') @section('content-header', 'Department List') @section('content-actions') Add Department @endsection @section('content')
@csrf
@foreach ($departments as $department) @endforeach
Branch ID Department Name Description Status Action
{{$department->BID}} {{$department->department_name}} {{$department->description}} {{$department->status ? 'Active' : 'Inactive'}}
@endsection @section('js') @endsection