mirror of
https://github.com/robonen/education-project.git
synced 2026-03-20 10:54:31 +00:00
16 lines
275 B
PHP
16 lines
275 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AcademicPlan extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $primaryKey = ['subject_id', 'class_id'];
|
|
|
|
public $incrementing = false;
|
|
}
|