34 lines
727 B
PHP
34 lines
727 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Mengajar extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $table = 'mengajar';
|
|
protected $primaryKey = 'id_mengajar';
|
|
protected $guarded = [];
|
|
protected $casts = [
|
|
'created_at' => 'datetime',
|
|
'updated_at' => 'datetime',
|
|
];
|
|
|
|
public function mata_pelajaran()
|
|
{
|
|
return $this->belongsTo(Mapel::class, 'id_mapel', 'id_mapel');
|
|
}
|
|
|
|
public function guru()
|
|
{
|
|
return $this->belongsTo(Guru::class, 'id_guru', 'nip');
|
|
}
|
|
|
|
public function kelas()
|
|
{
|
|
return $this->belongsTo(Kelas::class, 'id_kelas', 'id_kelas');
|
|
}
|
|
}
|