Exemplo n.º 1
0
 /**
  * Return collection of all countries
  *
  * @return Collection
  */
 public static function getCountries()
 {
     return Cache::rememberForever('addresses.countries', function () {
         return Country::orderBy('name', 'ASC')->get();
     });
 }