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