@extends('layouts/contentNavbarLayout') @section('title', 'Departments') @section('content')
Departments List
Create department
@forelse ($departments as $department) @empty @endforelse
Name Slug Actions
{{ $department->name }} {{ $department->slug }}
@include('components.delete_confirm_modal', ['entity' => 'department', 'action' => 'CRM/departments']) @endsection