changed table name ref in char type query in sticker details
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 13s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 17s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 15s
Laravel Larastan / larastan (pull_request) Failing after 36s
Laravel Pint / pint (pull_request) Failing after 46s

This commit is contained in:
dhanabalan
2026-09-21 18:15:57 +05:30
parent 1e18e90af8
commit ae82b967f7

View File

@@ -7,7 +7,7 @@ use App\Filament\Imports\StickerDetailImporter;
use App\Filament\Resources\StickerDetailResource\Pages;
use App\Filament\Resources\StickerDetailResource\RelationManagers;
use App\Models\Item;
use App\Models\ItemCharacteristic;
use App\Models\ClassCharacteristic;
use App\Models\Plant;
use App\Models\StickerDetail;
use App\Models\StickerStructureDetail;
@@ -96,7 +96,7 @@ class StickerDetailResource extends Resource
->reactive()
->searchable()
->options(
collect(Schema::getColumnListing('item_characteristics'))
collect(Schema::getColumnListing('class_characteristics'))
->reject(fn ($column) => in_array($column, [
'id',
'plant_id',