[ 'TPS\Birzha\Models\Product', ] ]; /** * @var string The database table used by the model. */ public $table = 'tps_birzha_cities'; public function getActiveCategoriesOptions() { $query = City::where('primary_key', 0) ->get() ->lists('name', 'id'); // \Log::info($query); return $query; } /** * @var array Validation rules */ public $rules = [ ]; }