From 51e3b370cfaac7f9786f35ab1571a463dc35917e Mon Sep 17 00:00:00 2001 From: Mohamed Jinas Date: Tue, 29 Sep 2020 02:01:11 +0500 Subject: [PATCH] Update web.php --- routes/web.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/routes/web.php b/routes/web.php index ce7b7c9..30b2d09 100644 --- a/routes/web.php +++ b/routes/web.php @@ -27,9 +27,7 @@ Route::get('/preview', function () { }); Route::get('/download/android', function () { - return response()->download(public_path('app/karudhaas.apk'), 'karudhaas.apk', [ - 'Content-type' => 'application/x-binary' - ]); + return redirect("https://play.google.com/store/apps/details?id=dev.baraveli.karudhaas"); }); Route::get('/article/{source}/{guid}', [ArticlesController::class, 'show'])->name('articles.show');