how i can get the event editing in the select input? ```php Forms\Components\Select::make('equipment_option_id') ->options(function($livewire){ $record_id = $livewire->ownerRecord->id; $options = EquipmentOption::whereDoesntHave('equipments', function ($query) use ($record_id) { $query->where('equipment_id', $record_id); })->get(); if("Here i can get the event?"){ } if ($options) { return $options->pluck('name', 'id')->toArray(); } }) ->required(), ```