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'); $version = preg_replace('~[\r\n]+~', '', File::get(base_path('version.md'))); $response = Updater::checkForUpdate($version, $channel); return response()->json($response); } }