26 lines
604 B
PHP
26 lines
604 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ProfileSekolah extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $table = 'profile';
|
|
protected $primaryKey = 'ProfileId';
|
|
|
|
protected $guarded = [];
|
|
|
|
public function tingkat()
|
|
{
|
|
return $this->belongsTo(\App\Models\Master\MasterTingkatSekolah::class,'ms_tingkat_sekolah_id','MsTingkatSekolahId');
|
|
}
|
|
|
|
public function sekolah()
|
|
{
|
|
return $this->belongsTo(\App\Models\Master\Sekolah::class,'ms_sekolah_id','MsSekolahId');
|
|
}
|
|
}
|