From 9e9a01d67e0be31fb625919c74d6412667728269 Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Sun, 14 Dec 2025 16:11:11 +0700 Subject: [PATCH] fix(brands): Update modal title from 'Ubah Kategori' to 'Ubah Merek' for accurate representation in BrandsTable component. --- app/Livewire/Datatable/Catalog/BrandsTable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Livewire/Datatable/Catalog/BrandsTable.php b/app/Livewire/Datatable/Catalog/BrandsTable.php index d2f38fe..f1e86b8 100644 --- a/app/Livewire/Datatable/Catalog/BrandsTable.php +++ b/app/Livewire/Datatable/Catalog/BrandsTable.php @@ -80,7 +80,7 @@ public function columns(): array $actions .= view('components.actions.table.edit-modal', [ 'id' => $row->hash, 'method' => 'update', - 'modalTitle' => 'Ubah Kategori', + 'modalTitle' => 'Ubah Merek', ])->render(); }