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

index() public method

Display a listing of the resource.
public index ( ) : Illuminate\Http\Response
return Illuminate\Http\Response
    public function index()
    {
        $check = Integration::all();
        return view('integrations.index')->withCheck($check);
    }
IntegrationsController