user()) || (! $request->user()->isOwner())) { return response()->json([ 'success' => false, 'message' => 'You are not allowed to update this app.', ], 401); } set_time_limit(600); // 10 minutes $channel = $request->get('channel', 'stable'); $response = Updater::checkForUpdate(Setting::getSetting('version'), $channel); return response()->json($response); } }