Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要构建一个小部件,并计划为此使用 Lumen,因为我需要快速响应,并且需要路由、翻译、请求和视图等组件。现在注意到了这个问题,因为在 5.1 版之后视图已停止。
是否可以在最新版本的 Lumen 中使用视图?
虽然 Lumen 5.2.0 最初剥离了视图,但它们在 Lumen 5.2.1 中被重新添加,并且从那以后就可以使用了。您应该能够毫无问题地使用视图。
资源/视图/test.blade.php:
Hello, world!
路线.php:
$app->get('/', function () use ($app) { return view('test'); });