* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0 */ namespace App\Http\Controllers; use App\Enums\ModerationStatus; use App\Models\Scopes\ApprovedScope; use App\Models\Torrent; class TorrentPendingController extends Controller { public function index(): \Illuminate\Contracts\View\Factory|\Illuminate\View\View { return view('torrent.pending', [ 'torrents' => Torrent::withoutGlobalScope(ApprovedScope::class) ->with(['category', 'type', 'resolution']) ->where('status', '=', ModerationStatus::PENDING) ->orWhere('status', '=', ModerationStatus::POSTPONED) ->get(), ]); } }