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'),
|
->label('Panel Box Sno'),
|
||||||
Forms\Components\TextInput::make('scanned_status')
|
Forms\Components\TextInput::make('scanned_status')
|
||||||
->label('Scanned Status'),
|
->label('Scanned Status'),
|
||||||
Forms\Components\TextInput::make('scanned_count')
|
Forms\Components\TextInput::make('scanned_quantity')
|
||||||
->label('Scanned Count'),
|
->label('Scanned Quantity'),
|
||||||
Forms\Components\Hidden::make('created_by')
|
Forms\Components\Hidden::make('created_by')
|
||||||
->label('Created By')
|
->label('Created By')
|
||||||
->default(Filament::auth()->user()?->name),
|
->default(Filament::auth()->user()?->name),
|
||||||
|
|||||||
@@ -86,8 +86,8 @@ class StockDataMasterResource extends Resource
|
|||||||
->label('Panel Box Sno'),
|
->label('Panel Box Sno'),
|
||||||
Forms\Components\TextInput::make('scanned_status')
|
Forms\Components\TextInput::make('scanned_status')
|
||||||
->label('Scanned Status'),
|
->label('Scanned Status'),
|
||||||
Forms\Components\TextInput::make('scanned_count')
|
Forms\Components\TextInput::make('scanned_quantity')
|
||||||
->label('Scanned Count'),
|
->label('Scanned Quantity'),
|
||||||
Forms\Components\Hidden::make('created_by')
|
Forms\Components\Hidden::make('created_by')
|
||||||
->label('Created By')
|
->label('Created By')
|
||||||
->default(Filament::auth()->user()?->name),
|
->default(Filament::auth()->user()?->name),
|
||||||
@@ -200,11 +200,11 @@ class StockDataMasterResource extends Resource
|
|||||||
->alignCenter()
|
->alignCenter()
|
||||||
->searchable()
|
->searchable()
|
||||||
->sortable(),
|
->sortable(),
|
||||||
// Tables\Columns\TextColumn::make('scanned_count')
|
Tables\Columns\TextColumn::make('scanned_quantity')
|
||||||
// ->label('Scanned Count')
|
->label('Scanned Quantity')
|
||||||
// ->alignCenter()
|
->alignCenter()
|
||||||
// ->searchable()
|
->searchable()
|
||||||
// ->sortable(),
|
->sortable(),
|
||||||
Tables\Columns\TextColumn::make('created_at')
|
Tables\Columns\TextColumn::make('created_at')
|
||||||
->label('Created At')
|
->label('Created At')
|
||||||
->alignCenter()
|
->alignCenter()
|
||||||
|
|||||||
Reference in New Issue
Block a user