master crud setup
This commit is contained in:
19
app/Models/Student/StudentLanguage.php
Normal file
19
app/Models/Student/StudentLanguage.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Modules\Models\Student;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class StudentLanguage extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
protected $table = 'tbl_student_languages';
|
||||
|
||||
protected $fillable = [
|
||||
'student_id',
|
||||
'language',
|
||||
'score',
|
||||
'language_documents',
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user