visuddhinanda 2 лет назад
Родитель
Сommit
f64553cc2e
1 измененных файлов с 5 добавлено и 0 удалено
  1. 5 0
      routes/web.php

+ 5 - 0
routes/web.php

@@ -26,3 +26,8 @@ Route::get('/export/wbw', function (){
     return view('export_wbw',['sentences' => []]);
 });
 
+Route::get('/privacy', function (){
+    $content = file_get_contents(base_path('/documents/mobile/privacy.md'));
+    return view('privacy',['content' => $content]);
+});
+