Added scanned quantity in stock master and not in stock resource page
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Gemini PR Review / Gemini PR Review (pull_request) Failing after 24s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 16s
Laravel Pint / pint (pull_request) Successful in 3m7s
Laravel Larastan / larastan (pull_request) Failing after 3m39s
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Gemini PR Review / Gemini PR Review (pull_request) Failing after 24s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 16s
Laravel Pint / pint (pull_request) Successful in 3m7s
Laravel Larastan / larastan (pull_request) Failing after 3m39s
This commit is contained in:
@@ -82,8 +82,8 @@ class NotInStockResource extends Resource
|
||||
->label('Panel Box Sno'),
|
||||
Forms\Components\TextInput::make('scanned_status')
|
||||
->label('Scanned Status'),
|
||||
Forms\Components\TextInput::make('scanned_count')
|
||||
->label('Scanned Count'),
|
||||
Forms\Components\TextInput::make('scanned_quantity')
|
||||
->label('Scanned Quantity'),
|
||||
Forms\Components\Hidden::make('created_by')
|
||||
->label('Created By')
|
||||
->default(Filament::auth()->user()?->name),
|
||||
|
||||
@@ -86,8 +86,8 @@ class StockDataMasterResource extends Resource
|
||||
->label('Panel Box Sno'),
|
||||
Forms\Components\TextInput::make('scanned_status')
|
||||
->label('Scanned Status'),
|
||||
Forms\Components\TextInput::make('scanned_count')
|
||||
->label('Scanned Count'),
|
||||
Forms\Components\TextInput::make('scanned_quantity')
|
||||
->label('Scanned Quantity'),
|
||||
Forms\Components\Hidden::make('created_by')
|
||||
->label('Created By')
|
||||
->default(Filament::auth()->user()?->name),
|
||||
@@ -200,11 +200,11 @@ class StockDataMasterResource extends Resource
|
||||
->alignCenter()
|
||||
->searchable()
|
||||
->sortable(),
|
||||
// Tables\Columns\TextColumn::make('scanned_count')
|
||||
// ->label('Scanned Count')
|
||||
// ->alignCenter()
|
||||
// ->searchable()
|
||||
// ->sortable(),
|
||||
Tables\Columns\TextColumn::make('scanned_quantity')
|
||||
->label('Scanned Quantity')
|
||||
->alignCenter()
|
||||
->searchable()
|
||||
->sortable(),
|
||||
Tables\Columns\TextColumn::make('created_at')
|
||||
->label('Created At')
|
||||
->alignCenter()
|
||||
|
||||
Reference in New Issue
Block a user