mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
Merge branch 'dillon/34.8-jenkins-vapor' into vapor/production
This commit is contained in:
+2
-2
@@ -76,8 +76,8 @@
|
||||
<!-- Default Recipient Bank from Booking -->
|
||||
<div class="row align-items-center" v-else>
|
||||
<div class="col-auto p-r-0">
|
||||
<img v-if="item.service.id === 4" src="/images/1688_logo.png" alt="" width="40">
|
||||
<img v-else-if="item.service.id === 11" src="/images/alipay_logo.png" alt="" width="40">
|
||||
<img v-if="item.service.id === 4" :src="asset('images/1688_logo.png')" alt="" width="40">
|
||||
<img v-else-if="item.service.id === 11" :src="asset('images/alipay_logo.png')" alt="" width="40">
|
||||
<div v-else class="padding-5 bg-master-light">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
|
||||
width="30" height="30"
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('images/favicon/apple-touch-icon.png') }}">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset('images/favicon/favicon-32x32.png') }}">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{{ asset('images/favicon/favicon-16x16.png') }}">
|
||||
<link rel="manifest" href="{{ asset('images/favicon/site.webmanifest') }}">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#ffffff">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
|
||||
@@ -1324,3 +1324,13 @@ Route::get('/downloads', function () {
|
||||
return view('pages.downloads.index');
|
||||
})->name('admin.download');
|
||||
|
||||
Route::get('/site.webmanifest', function () {
|
||||
$filePath = resource_path('assets/images/favicon/site.webmanifest');
|
||||
|
||||
if (!File::exists($filePath)) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
$contents = File::get($filePath);
|
||||
return response($contents, 200)->header('Content-Type', 'application/manifest+json');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user