HomeController.php 441 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace App\Http\Controllers;
  3. use App\Services\LiquidRenderer;
  4. use Illuminate\Http\Request;
  5. class HomeController extends Controller
  6. {
  7. function __construct()
  8. {
  9. }
  10. public function index()
  11. {
  12. $cacheKey=getDistId().'-home';
  13. //模板支持多级目录,需要目录符号
  14. $output = LiquidRenderer::render('home.liquid', [
  15. ],$cacheKey);
  16. return response($output);
  17. }
  18. }