AboutController.php 764 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. namespace App\Http\Home;
  3. use App\Services\Eav\MaterialService;
  4. use App\Services\Elastic\Facades\ES;
  5. use Illuminate\Database\Schema\Blueprint;
  6. use Illuminate\Support\Carbon;
  7. use Illuminate\Support\Facades\DB;
  8. use Illuminate\Support\Facades\Request;
  9. use Illuminate\Support\Facades\Schema;
  10. class AboutController extends HttpBaseController
  11. {
  12. public function __construct()
  13. {
  14. parent::__construct();
  15. }
  16. /**
  17. * 购买
  18. */
  19. public function index()
  20. {
  21. return view('home/http/about');
  22. }
  23. /**
  24. *
  25. */
  26. public function permission()
  27. {
  28. return view('home/http/permission');
  29. }
  30. /**
  31. *
  32. */
  33. public function privacy()
  34. {
  35. return view('home/http/privacy');
  36. }
  37. }