From bc8163a535f03a4267529c913a6808a20d0ab3cd Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Mon, 1 Dec 2025 17:39:58 +0530 Subject: [PATCH] chnaged indentation in item resource page --- app/Filament/Resources/ItemResource.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/Filament/Resources/ItemResource.php b/app/Filament/Resources/ItemResource.php index 2109681..a11dd21 100644 --- a/app/Filament/Resources/ItemResource.php +++ b/app/Filament/Resources/ItemResource.php @@ -267,9 +267,7 @@ class ItemResource extends Resource ->options(function (callable $get) { $plantId = $get('Plant'); - return $plantId - ? Item::where('plant_id', $plantId)->pluck('code', 'id') - : []; + return $plantId ? Item::where('plant_id', $plantId)->pluck('code', 'id') : []; }) ->searchable() ->reactive(),