From c1950f97bbf87e33750797859ef86f986a56a7c2 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Thu, 24 Sep 2026 14:49:37 +0530 Subject: [PATCH] removed file name text box from module list --- app/Filament/Resources/ModuleListResource.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/Filament/Resources/ModuleListResource.php b/app/Filament/Resources/ModuleListResource.php index 155062d..acfd201 100644 --- a/app/Filament/Resources/ModuleListResource.php +++ b/app/Filament/Resources/ModuleListResource.php @@ -38,15 +38,15 @@ class ModuleListResource extends Resource Forms\Components\TextInput::make('filter_name') ->label('Filter Name') ->required(), - Forms\Components\TextInput::make('file_name') - ->label('File Name') - ->required() - ->reactive() - ->extraAttributes([ - 'x-data' => '{ value: "" }', - 'x-model' => 'value', - 'x-on:keydown.enter.prevent' => '$wire.process(value)', - ]), + // Forms\Components\TextInput::make('file_name') + // ->label('File Name') + // ->required() + // ->reactive() + // ->extraAttributes([ + // 'x-data' => '{ value: "" }', + // 'x-model' => 'value', + // 'x-on:keydown.enter.prevent' => '$wire.process(value)', + // ]), Forms\Components\Hidden::make('created_by') ->label('Created By') ->default(Filament::auth()->user()?->name),