IMMREX7

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

<?php

namespace App;

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

class OutstandingAmount extends Model {

    protected $primaryKey = 'idOutstanding';
    protected $table = 'student_transaction_outstanding';
    protected $fillable = ['idSchool', 'idFinancialYear','forFy' ,'idStudent','amount'];
    
    public function student() {
        return $this->belongsTo(AdmEntry::class, 'idStudent', 'idStudent');
    }
}

Copyright © 2021 - 2025 IMMREX7