Current Path : /home/numerotech/public_html/livemt2023.aios-scientificcommittee.org/app/models/ |
Current File : //home/numerotech/public_html/livemt2023.aios-scientificcommittee.org/app/models/Country.php |
<?php class Country extends Eloquent { protected $table = 'countries'; protected $primaryKey = 'country_id'; public Static function GetCountries() { try { $countries = Country::where('is_visible',1)->lists('name','country_id'); return $countries; } catch (Exception $e) { Log::error('Models: Country -> GetCountries '.$e->getMessage()); return []; } } }