在一个新的laravel项目中,我正在使用
创建一个身份验证系统php artisan make:auth
然后,我重命名以下文件:
welcome.blade.php welcome1.blade.php
并将该文件替换为具有相同名称的新文件:
welcome.blade.php
然后我刷新页面,但它仍然显示浏览器中的旧页面视图。即使在我更改了welcome1.blade.php中的文本后,视图也没有改变。如何更改“make:auth”命令期间创建的刀片页面?
答案 0 :(得分:1)
如果您正在使用WelcomeController,则需要更改对视图的调用。如果没有,您需要更改路线文件以匹配。
public function index() {
return view('welcome1');
}
答案 1 :(得分:0)
尝试通过运行php artisan cache清除应用程序缓存:在终端中清除。
答案 2 :(得分:0)
如果您正在路线中运行视图
Route::get('/', function () {
return view('welcome');
});
确保您加载的视图实际上是welcome.blade.php
,或者您要加载欢迎welcome1.blade.php
如果您通过控制器
Route::get('/', 'HomeController@index');
然后控制器:
//to return welcome
public function index(){
return view('welcome');
}
//to return welcome1
public function index(){
return view('welcome1');
}