Ver código fonte

fix description not show

Tokumeikoi 5 anos atrás
pai
commit
895e0f177b
2 arquivos alterados com 4 adições e 2 exclusões
  1. 2 1
      resources/views/app.blade.php
  2. 2 1
      routes/web.php

+ 2 - 1
resources/views/app.blade.php

@@ -15,7 +15,8 @@
             title: '{{$title}}',
             theme: '{{$theme}}',
             verison: '{{$verison}}',
-            background_url: '{{$backgroun_url}}'
+            background_url: '{{$backgroun_url}}',
+            description: '{{$description}}'
         }
     </script>
 </head>

+ 2 - 1
routes/web.php

@@ -23,6 +23,7 @@ Route::get('/', function (Request $request) {
         'title' => config('v2board.app_name', 'V2Board'),
         'theme' => config('v2board.frontend_theme', 1),
         'backgroun_url' => config('v2board.frontend_background_url'),
-        'verison' => '1.0.3'
+        'verison' => '1.0.4',
+        'description' => config('v2board.app_description', 'V2Board is best')
     ]);
 });