@extends('backend.layouts.master') @section('title') Departments - Admin Panel @endsection @section('styles') @endsection @section('admin-content')
@include('backend.layouts.partials.logout')

Departments List

New Departments

@include('backend.layouts.partials.messages') @foreach ($departments as $department) @endforeach
Sl Departments priority Status Action
{{ $loop->index+1}} {{ $department->dep_name}} {{ $department->priority}} {{($department->status == 1 ? 'Active' : 'De-Active')}} Edit Delete
@endsection @section('scripts') @endsection