猿问

Laravel 模型类未找到,但我创建了模型

当我执行返回的代码时:


类 'app\Nota' 未找到


我尝试在控制器中使用app\Notas::all();,app\Nota::all();但没有奏效。我也尝试过use app\Notas;,但app\Nota;对我没有用。


我的模型:


<?php

namespace App;


use Illuminate\Database\Eloquent\Model;


class Nota extends Model

{

    //

}

我的控制器:


<?php


namespace App\Http\Controllers;


use Illuminate\Http\Request;

use app\Nota;


class productoController extends Controller

{

    public function show($id){

        $notas = app\Nota::all();

        print_r($notas);

        die;

    }

}

可能是什么问题?


缥缈止盈
浏览 206回答 2
2回答

慕码人8056858

替换您的控制器代码,例如 -<?phpnamespace App\Http\Controllers;use App\Nota;use Illuminate\Http\Request;class productoController extends Controller{&nbsp; &nbsp; public function show($id){&nbsp; &nbsp; &nbsp; &nbsp; $notas = Nota::all();&nbsp; &nbsp; &nbsp; &nbsp; dd($notas);&nbsp; &nbsp; }}

湖上湖

尝试使用以下内容:$notas&nbsp;=&nbsp;Nota::all();并替换use app\Nota;为use App\Nota;
随时随地看视频慕课网APP
我要回答