gpt4 book ai didi

php - Laravel Homestead 路由 : InvalidArgumentException in compiled. php:未找到 View [****]

转载 作者:搜寻专家 更新时间:2023-10-31 22:01:11 25 4
gpt4 key购买 nike

在启动并运行我的 Laravel Homestead 之后,我遇到了一个新问题。

即使在谷歌搜索之后,我也找不到在 Laravel Homestead 中设置路由的解决方案。

这是我的 routes.php(我创建了评论中的文件):

<?php

// ===============================================
// STATIC PAGES ==================================
// ===============================================

// show a static view for the home page (app/views/home.blade.php)
Route::get('/', function()
{
return View::make('home');
});

// about page (app/views/about.blade.php)
Route::get('about', function()
{
return View::make('about');
});

// work page (app/views/work.blade.php)
Route::get('work', array('as' => 'work', function()
{
return View::make('work');
}));
Route::get('users', function()
{
return View::make('users');
});

提前感谢您的任何建议。

最佳答案

在 Laravel5 中, View 位于

资源/观点

而不是在应用程序/ View 中

将您所有的 View 放在 resources/views 中,它应该可以工作。您会看到欢迎页面,因为它默认在 Laravel 中提供。

关于php - Laravel Homestead 路由 : InvalidArgumentException in compiled. php:未找到 View [****],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28914397/

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