Ejemplo n.º 1
0
 /**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function show($post_slug)
 {
     $posts = new SdcPost();
     $data['page_name'] = "Post Detail";
     $data['post'] = $posts->getDetail($post_slug);
     return view("backend.post.sdc_post_detail", $data);
 }
Ejemplo n.º 2
0
 public function getDetail($post_slug)
 {
     $post = SdcPost::wherePost_slug($post_slug)->first();
     return $post;
 }