IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/app/
File Up :
aku nok ndi : /home/spdtg/www/schoolmis/app/EpfMaster.php

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class EpfMaster extends Model {

    protected $primaryKey = 'idEpf';
    protected $table = 'epf_master';
    protected $fillable = ['idFinancialYear','idDepartment', 'idSchool', 'idDesignation', 'idEmployee', 'gender', 'allowance',  'maxAllowed','deduction','allowance_type'];

    public function department() {
        return $this->belongsTo(Department::class, 'idDepartment', 'idDepartment');
    }

    public function designation() {
        return $this->belongsTo(Designation::class, 'idDesignation', 'idDesignation');
    }

    public function employee() {
        return $this->belongsTo(Employee::class, 'idEmployee', 'idEmployee');
    }

}

Copyright © 2021 - 2025 IMMREX7