Example #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $list = Site::paginate($this->config['page_size']);
     $title = '服务器列表';
     return view('admin.siteList', array('list' => $list, 'title' => $title));
 }