<?php function getDomesticCities() { $result = AppPackage::where('type', '=', 'domestic') ->groupBy('from_city') ->get(['from_city']); return $result; }