/**
  * Get landing pages
  * @return mixed
  */
 public function index()
 {
     $reporters = MediaReporter::where('status', '=', 1)->get();
     return view('blupl/printmedia::list-printing', compact('reporters'));
 }
 /**
  * Show a role.
  */
 public function show($mediaCategory)
 {
     $reporters = MediaReporter::where('media_category', '=', $mediaCategory)->get();
     return view('blupl/printmedia::list', compact('reporters'));
 }