@extends('layouts.demo10.base') @section('content') @can('view.departments')

Department & Designation Management

Home / Departments
@can('create.departments') @endcan
@canany(['edit.departments', 'delete.departments']) @endcanany @if(!empty($departments)) @foreach($departments as $department) @canany(['edit.departments', 'delete.departments']) @endcanany @endforeach @endif
Project Department
{{ $department->project->name ?? '-' }} {{ $department->name }}
@else

Access Denied

You do not have permission to view this page.

@endcan

Add New Department

@csrf

Edit Department

@csrf
@endsection @section('scripts') @vite('resources/js/pages/department.js') @endsection