@extends('admin.layouts.app')
@section('content')
ID |
Sector Name |
Sector Slug |
Sector Image |
Status |
Action |
@if( isset($departments) )
@php $i=1; @endphp
@foreach( $departments as $result )
{{ $i++ }} |
{{ucfirst($result->department_name)}} |
{{$result->department_slug}} |
|
@if($result->status == 1)
- Active
@else
- Inactive
@endif
|
|
@endforeach
@endif
@section('scripts')
@endsection
@endsection