MIF_E31221451/app/Models/StudentSubject.php

15 lines
226 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class StudentSubject extends Model
{
protected $table = 'student_subject';
protected $fillable = [
'name',
'description'
];
}