Beispiel #1
0
 /**
  * Display the specified notice.
  *
  * @param  string  $permalink
  * @return \Illuminate\Http\Response
  */
 public function show($permalink)
 {
     $notice = Notice::AdminNotice($permalink)->first();
     return view('admin/news/show', compact('notice'));
 }