From 207d52a443581fada98b9016f0eb7c4454aa677d Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Tue, 2 Jun 2026 09:18:25 +0530 Subject: [PATCH] Added options in filter logic --- app/Filament/Resources/VisitorEntryResource.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/Filament/Resources/VisitorEntryResource.php b/app/Filament/Resources/VisitorEntryResource.php index d01da58..4eb8318 100644 --- a/app/Filament/Resources/VisitorEntryResource.php +++ b/app/Filament/Resources/VisitorEntryResource.php @@ -327,7 +327,12 @@ class VisitorEntryResource extends Resource ->options([ 'Student' => 'Student', 'Consultant' => 'Consultant', - 'Vendor' => 'Vendor', + 'Supplier' => 'Supplier', + 'InterviewCandidates' => 'Interview Candidates', + 'Customers/Dealers' => 'Customers/Dealers', + 'Bankers' => 'Bankers', + 'ServiceProviders' => 'Service Providers', + 'GovermentOfficials' => 'Government Officials', 'Other' => 'Other', ]) ->placeholder('Enter Type')