我创建了一个视图文件,并且有多个模型。我要在视图中显示多个模型值。
我想使用“学生模型”显示学生详细信息,以及使用“中心模型”显示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',];
}
第二名模范生
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。