Aesthetic Fixes

This commit is contained in:
2026-05-25 17:39:57 +08:00
parent e1cd383ce3
commit 6089bd7efe
32 changed files with 1344 additions and 511 deletions

View File

@@ -179,7 +179,7 @@ class MaterialTransferController extends Controller
{
abort_if($materialTransfer->status !== MaterialTransferStatus::Draft, 403, 'Only draft transfers can be submitted.');
$approverIds = \App\Models\User::role('project_manager')->pluck('id')->toArray();
$approverIds = \App\Models\User::role('Project Manager')->pluck('id')->toArray();
if (empty($approverIds)) {
$approverIds = [1]; // Fallback to admin/first user
}