gpt4 book ai didi

html - 在 Laravel 中添加 HTML 页面

转载 作者:太空宇宙 更新时间:2023-11-04 16:14:45 27 4
gpt4 key购买 nike

是否有必要在 laravel 中使用 blade 文件,或者我们可以添加 .html 页面用于 UI 目的,如果是,那么如何做到这一点。

这听起来像是一个愚蠢的问题,但我仍然想知道这个问题。

最佳答案

您可以使用 HTML 文件,但它应该是 .php 文件。喜欢-

<!-- View stored in resources/views/greeting.php -->

<html>
<body>
<h1>Hello, <?php echo $name; ?></h1>
</body>
</html>

你有这个 greeting.php 文件显示你可以在你的 Controller 中调用它并传递如下值。

return view('greeting', ['name' => 'James']);

关于html - 在 Laravel 中添加 HTML 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32820364/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com