Update web.php

This commit is contained in:
2020-09-29 02:01:11 +05:00
parent 2e6cceffa5
commit 51e3b370cf

View File

@@ -27,9 +27,7 @@ Route::get('/preview', function () {
}); });
Route::get('/download/android', function () { Route::get('/download/android', function () {
return response()->download(public_path('app/karudhaas.apk'), 'karudhaas.apk', [ return redirect("https://play.google.com/store/apps/details?id=dev.baraveli.karudhaas");
'Content-type' => 'application/x-binary'
]);
}); });
Route::get('/article/{source}/{guid}', [ArticlesController::class, 'show'])->name('articles.show'); Route::get('/article/{source}/{guid}', [ArticlesController::class, 'show'])->name('articles.show');