<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class TeacherStudent extends Model { protected $table = 'teacher_students'; protected $guarded = []; }