Deploy Ladill Queue / deploy (push) Successful in 56s
Phases 1–6: tickets, counters, displays, appointments, workflows, rules, analytics, reports, feedback, admin, device API, and Gitea deploy workflow for queue.ladill.com. Co-authored-by: Cursor <cursoragent@cursor.com>
32 lines
1.9 KiB
PHP
32 lines
1.9 KiB
PHP
<x-app-layout title="Departments">
|
|
<div class="mb-6 flex items-center justify-between">
|
|
<h1 class="text-2xl font-semibold">Departments</h1>
|
|
@if(app(\App\Services\Qms\QmsPermissions::class)->can(app(\App\Services\Qms\OrganizationResolver::class)->memberFor(auth()->user()), 'admin.departments.manage'))
|
|
<a href="{{ route('qms.departments.create') }}" class="btn-primary">New department</a>
|
|
@endif
|
|
</div>
|
|
@include('partials.flash')
|
|
<div class="overflow-hidden rounded-2xl border bg-white dark:border-slate-700 dark:bg-slate-900">
|
|
<table class="min-w-full divide-y divide-slate-200">
|
|
<thead class="bg-slate-50"><tr>
|
|
<th class="px-4 py-3 text-left text-xs font-semibold uppercase text-slate-500">Name</th>
|
|
<th class="px-4 py-3 text-left text-xs font-semibold uppercase text-slate-500">Branch</th>
|
|
<th class="px-4 py-3 text-left text-xs font-semibold uppercase text-slate-500">Type</th>
|
|
<th></th>
|
|
</tr></thead>
|
|
<tbody class="divide-y divide-slate-200">
|
|
@forelse ($departments as $department)
|
|
<tr>
|
|
<td class="px-4 py-3 text-sm">{{ $department->name }}</td>
|
|
<td class="px-4 py-3 text-sm">{{ $department->branch?->name }}</td>
|
|
<td class="px-4 py-3 text-sm">{{ $types[$department->type] ?? $department->type }}</td>
|
|
<td class="px-4 py-3 text-right"><a href="{{ route('qms.departments.edit', $department) }}" class="text-sm text-indigo-600">Edit</a></td>
|
|
</tr>
|
|
@empty
|
|
<tr><td colspan="4" class="px-6 py-12 text-center text-sm text-slate-500">No departments.</td></tr>
|
|
@endforelse
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</x-app-layout>
|