コード例 #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;
 }