Error on Filter

->filters([
    Filter::make('filter_fee')
        ->schema([
            Select::make('filter_grade')
                ->options(fn() => Grade::pluck('name', 'id'))
                // ->native(false)
                ->live(),


when I use native(false) and live() method it throws an error Using $this when not in object context
Solution
There is an issue open for that
Was this page helpful?