@extends('garage.layouts.app') @section('title', 'Departments') @section('content') @include('garage.hr.styles')
Departments
Manage employee departments. (Quick add/edit via modal.)
@csrf
Employees
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse($departments as $d) @empty @endforelse
Name Status Actions
{{ $d->name }} @if($d->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
No departments found.
@if(method_exists($departments,'links'))
{{ $departments->links() }}
@endif
@push('scripts') @endpush @endsection