@extends('backend.layouts.main')
@section('title')
Department Management
@endsection
@section('content')
| S.N. |
Name |
Display Order |
Status |
Actions |
@foreach ($departments as $department)
| {{ $loop->iteration }} |
{{ $department->name }} |
{{ $department->display_order }} |
@if ($department->is_published)
Published
@else
Draft
@endif
|
|
@endforeach
@endsection
@section('scripts')
@endsection