| 1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Model;
- use Illuminate\Database\Eloquent\Model;
- use App\Model\Privillage\Role;
- use App\Model\TahunProgramDetail;
- use Auth;
- use Illuminate\Database\Eloquent\SoftDeletes;
- class TemplateProgramRole extends Model
- {
- use SoftDeletes;
- protected $table = 'template_program_role';
- protected $fillable = [
- 'id_role',
- 'id_template_program',
- 'created_by',
- 'updated_by',
- ];
- public function templateProgram(){
- return $this->belongsTo('App\Model\TemplateProgram', 'id_template_program');
- }
- }
|