File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11<?php namespace App \Http \Controllers ;
2-
32use Illuminate \Routing \Controller ;
4-
53class PWAController extends Controller
64{
75 public function manifest ()
@@ -13,20 +11,25 @@ public function manifest()
1311 "display " => "fullscreen " ,
1412 "start_url " => "/?using_pwa=1 " ,
1513 "short_name " => "AccessLocator " ,
14+ "background_color " => "#e7f3f5 " ,
1615 "theme_color " => "#202767 " ,
1716 "description " => "Your personalized access to the world " ,
1817 "orientation " => "portrait " ,
1918 "background_color " => "#202767 " ,
2019 "related_applications " => [],
2120 "prefer_related_applications " => false ,
22- "gcm_sender_id " : "926874022337 "
2321 "icons " => [
2422 [
2523 "src " => "/images/logo-192x192.png " ,
2624 "type " => "image/png " ,
2725 "sizes " => "192x192 "
26+ ],
27+ [
28+ "src " => "/images/logo-512x512.png " ,
29+ "type " => "image/png " ,
30+ "sizes " => "512x512 "
2831 ]
2932 ]
3033 ]);
3134 }
32- }
35+ }
You can’t perform that action at this time.
0 commit comments