gpt4 book ai didi

laravel - 如何在 laravel 5.8 中从 View 文件夹访问文件到前端?

转载 作者:行者123 更新时间:2023-12-01 22:26:45 25 4
gpt4 key购买 nike

我在名为“home”的文件夹内的 View 中有一个名为“index.blade”的文件。现在我试图将该文件夹作为 127.0.0.1:8000 的前端。当我尝试提供路线时,它向我显示错误。

我尝试使用名为 FrontendController 的 Controller 来提供路由

ErrorException (E_ERROR) Undefined variable: students (View: D:\xampp\htdocs\Student01\resources\views\home\index.blade.php)

最佳答案

学生变量问题。

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use App\Students;

class FrontendController extends Controller
{
public function index()
{
$students = Students::get();
return view('home.index', compact('students'));
}
}

关于laravel - 如何在 laravel 5.8 中从 View 文件夹访问文件到前端?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56684782/

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