removed file name text box from module list
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 16s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 17s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 21s
Laravel Pint / pint (pull_request) Successful in 3m45s
Laravel Larastan / larastan (pull_request) Failing after 6m24s

This commit is contained in:
dhanabalan
2026-09-24 14:49:37 +05:30
parent 478ae96df1
commit c1950f97bb

View File

@@ -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),