IMMREX7

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

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;
use Carbon\Carbon;

class EmployeeLeave extends Model {

    protected $primaryKey = 'idLeave';
    protected $table = 'employee_leave';
    
    public function employee() {
        return $this->belongsTo(Employee::class, 'idEmployee', 'idEmployee');
    }
}

Copyright © 2021 - 2025 IMMREX7