| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace App\Model;
- use Illuminate\Database\Eloquent\Model;
- use App\Model\TahunProgram;
- use App\Model\Privillage\Role;
- use Auth;
- class TahunProgramDetailUpt extends Model
- {
- protected $table = "tahun_program_detail_upt";
- protected $fillable = [
- 'id_tahun_program_detail',
- 'id_upt',
- 'periode',
- 'target',
- 'satuan',
- ];
- public function tahunProgramDetail(){
- return $this->belongsTo('App\Model\TahunProgramDetail', 'id_tahun_program_detail');
- }
- public function upt(){
- return $this->belongsTo('App\Model\UPTSModel', 'id_upt');
- }
- }
|