コード例 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $posts = new SdcPost();
     $data['page_name'] = "Post page";
     $data['posts'] = $posts->getLists();
     return view("backend.post.sdc_post_list", $data);
 }