Added default value as '-' to material_type on view report
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 11s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 11s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 17s
Laravel Pint / pint (pull_request) Successful in 2m31s
Laravel Larastan / larastan (pull_request) Failing after 3m56s

This commit is contained in:
dhanabalan
2026-01-22 11:05:54 +05:30
parent 755f4e5962
commit 922e76448c

View File

@@ -579,17 +579,18 @@ class StickerMasterResource extends Resource
->alignCenter(), ->alignCenter(),
Tables\Columns\TextColumn::make('material_type') Tables\Columns\TextColumn::make('material_type')
->label('Material Type') ->label('Material Type')
->default('-')
->alignCenter() ->alignCenter()
->formatStateUsing(function ($state) { ->formatStateUsing(function ($state) {
if (is_null($state) || $state === '') { if (is_null($state) || $state == '') {
return ''; return '-';
} }
return match ($state) { return match ($state) {
1 => 'Individual', 1 => 'Individual',
2 => 'Bundle', 2 => 'Bundle',
3 => 'Quantity', 3 => 'Quantity',
default => '', default => '-',
}; };
}), }),
Tables\Columns\TextColumn::make('created_at') Tables\Columns\TextColumn::make('created_at')