コード例 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     //
     $provinces = Province::latest('created_at')->paginate(10);
     return view('addr.provinces.index', compact('provinces'));
 }