From e789b0b59811efb9aac26be3c163d8b35020bcd3 Mon Sep 17 00:00:00 2001 From: Mohamed Jinas Date: Mon, 24 Aug 2020 10:41:12 +0500 Subject: [PATCH] Update web.php --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index f39dc87..c23a781 100644 --- a/routes/web.php +++ b/routes/web.php @@ -31,7 +31,7 @@ Route::get('/preview', function () { Route::get('/download/android', function () { return response()->download(public_path('app/karudhaas.apk'), 'karudhaas.apk', [ - 'Content-type' => 'application/apk' + 'Content-type' => 'application/x-binary' ]); });