From 0bba1ff53f4e78efc1d4547e80687bf07e51ca29 Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Tue, 17 Feb 2026 19:44:12 +0700 Subject: [PATCH] refactor: Simplify label for Feed resource from 'Nama Pakan' to 'Nama' --- app/Filament/Resources/Master/Feeds/FeedResource.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Filament/Resources/Master/Feeds/FeedResource.php b/app/Filament/Resources/Master/Feeds/FeedResource.php index d1c755b..d3ff469 100644 --- a/app/Filament/Resources/Master/Feeds/FeedResource.php +++ b/app/Filament/Resources/Master/Feeds/FeedResource.php @@ -47,7 +47,7 @@ public static function form(Schema $schema): Schema return $schema ->components([ TextInput::make('name') - ->label('Nama Pakan') + ->label('Nama') ->placeholder('Pelet') ->autocomplete(false) ->autofocus() @@ -94,7 +94,7 @@ public static function table(Table $table): Table return $table ->columns([ TextColumn::make('name') - ->label('Nama Pakan') + ->label('Nama') ->searchable() ->sortable(),