@ichmag17 looks like you miss the part of code. Check and format your original post
As far as I can see - you can use whereHas https://laravel.com/docs/8.x/eloquent-relationships#querying-relationship-existence (assuming you have relationship stationWorkbooks between Station and StationWorkbook)
return Station::whereHas(fn ($query) => $query->where('workbook_id', $this->current_workbook->id))->get();