'array', ]; /** * Return list of types of service for a business * * @param int $business_id * @return array */ public static function forDropdown($business_id) { $types_of_service = TypesOfService::where('business_id', $business_id) ->pluck('name', 'id'); return $types_of_service; } }