@foreach说是无效文本字符串,有人遇到这个问题吗

来源:2-3 Laravel-表单列表及分页实现

qq_萌萌哒_14

2017-07-14 15:17

@foreach($students as $student) ;;;;; @endforeach 报错,说@foreach是无效字符串类型。 有没有人遇到这个问题啊,被卡了一天了,求救、

写回答 关注

3回答

  • 慕仔2545585
    2020-07-05 02:45:51

    同问这个怎么解决的

  • haru2612
    2017-10-19 17:09:42

    请问,最后怎么解决的?

  • 慕瓜8576289
    2017-07-15 22:12:56

    模型文件Student.php要引用

    namespace App;
    use Illuminate\Database\Eloquent\Model;

    StudentController.php要引用

    namespace App\Http\Controllers;
    use \App\Student;
    use Illuminate\Http\Request;

    否则就会报错,最好使用phpstrom的自动提示代码


轻松学会Laravel-表单篇

Laravel框架是世界上最流行的PHP框架,没有之一

32653 学习 · 255 问题

查看课程

相似问题