コード例 #1
0
ファイル: CitysController.php プロジェクト: seahouse/hxerp
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     //
     $citys = City::latest('created_at')->with('province')->paginate(10);
     return view('addr.citys.index', compact('citys'));
 }
コード例 #2
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $cities = City::latest()->get();
     return view('bestellen.city-select', compact('cities'));
 }