예제 #1
0
파일: All.php 프로젝트: chris27tina/TODO
 public static function getCountie()
 {
     $counties = DB::table('counties')->get();
     foreach (County::all() as $county) {
         $counties = $county->name;
     }
     return $counties;
 }