App\Http\Controllers\ContestsController::index PHP Method

index() public method

public index ( )
    public function index()
    {
        $contests = Contest::where('visible', true)->orderBy('id', 'desc')->get();
        return view('contests.index')->with('contests', $contests);
    }
ContestsController