示例#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;
 }