$studioPlusChannel ]); } } public function edit($id) { return view('studioplus::edit'); } public function watch(StudioPlusVideo $video) { return view('studioplus::guestview', [ 'video' => $video->load('comments', 'channel.user') ]); } public function short(StudioPlusVideo $video) { return view('studioplus::short', [ 'video' => $video->load('comments', 'channel.user') ]); } public function export() { return Excel::download(new UsersExport, 'users.xlsx'); } }