Merge pull request 'removed designation in employee master resource page' (#694) from ranjith-dev into master
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Reviewed-on: #694
This commit was merged in pull request #694.
This commit is contained in:
@@ -58,11 +58,11 @@ class EmployeeMasterResource extends Resource
|
||||
Forms\Components\TextInput::make('department')
|
||||
->label('Department')
|
||||
->required(),
|
||||
Forms\Components\TextInput::make('designation')
|
||||
->label('Designation')
|
||||
->extraInputAttributes([
|
||||
'oninput' => 'this.value = this.value.replace(/[^a-zA-Z\s]/g, "")',])
|
||||
->required(),
|
||||
// Forms\Components\TextInput::make('designation')
|
||||
// ->label('Designation')
|
||||
// ->extraInputAttributes([
|
||||
// 'oninput' => 'this.value = this.value.replace(/[^a-zA-Z\s]/g, "")',])
|
||||
// ->required(),
|
||||
Forms\Components\TextInput::make('email')
|
||||
->label('Email')
|
||||
->email()
|
||||
@@ -125,11 +125,11 @@ class EmployeeMasterResource extends Resource
|
||||
->sortable()
|
||||
->alignCenter()
|
||||
->searchable(),
|
||||
Tables\Columns\TextColumn::make('designation')
|
||||
->label('Designation')
|
||||
->sortable()
|
||||
->alignCenter()
|
||||
->searchable(),
|
||||
// Tables\Columns\TextColumn::make('designation')
|
||||
// ->label('Designation')
|
||||
// ->sortable()
|
||||
// ->alignCenter()
|
||||
// ->searchable(),
|
||||
Tables\Columns\TextColumn::make('email')
|
||||
->label('Email')
|
||||
->sortable()
|
||||
|
||||
Reference in New Issue
Block a user