/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     //
     $channels = Channel::all();
     return view('core.admin.forums.permission-editor.channel.index', array('channels' => $channels));
 }