开发者社区> 问答> 正文

在laravel中如何在单个视图中显示来自两个不同模型的值

我创建了一个视图文件,并且有多个模型。我要在视图中显示多个模型值。

我想使用“学生模型”显示学生详细信息,以及使用“中心模型”显示show center_code。

我试过了,但是显示出一些错误 Property [center_code] does not exist on this collection instance. (View: C:\center.swasthikindia.com\resources\views\Center\registretion_form_hardcopy.blade.ph 一等学生


namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Database\Eloquent\Model;

class Student extends Model
{
    protected $table = 'student_lists';


    protected $fillable = ['student_name', 'student_registration_id', 'date_of_join', 'student_phone_no',];


}

第二名模范生

展开
收起
社区秘书 2019-12-09 16:01:07 730 0
0 条回答
写回答
取消 提交回答
问答分类:
PHP
问答地址:
问答排行榜
最热
最新

相关电子书

更多
ui-model,跨框架复用 立即下载
低代码开发师(初级)实战教程 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载