* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0 */ namespace App\Http\Controllers\MediaHub; use App\Http\Controllers\Controller; use App\Models\TmdbCollection; class TmdbCollectionController extends Controller { /** * Display a listing of the resource. */ public function index(): \Illuminate\Contracts\View\Factory|\Illuminate\View\View { return view('mediahub.collection.index'); } /** * Display the specified resource. */ public function show(int $id): \Illuminate\Contracts\View\Factory|\Illuminate\View\View { return view('mediahub.collection.show', [ 'collection' => TmdbCollection::with(['movies' => fn ($query) => $query->has('torrents'), 'comments'])->findOrFail($id), ]); } }