IMMREX7

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

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class CreditNote extends Model
{
    protected $primaryKey = 'idNotes';
    protected $table = 'creditnotes';
    protected $fillable = ['idSchool','idStudent','creditNote'];
    
    public function student() {
        return $this->belongsTo(AdmEntry::class, 'idStudent', 'idStudent');
    }
  
}

Copyright © 2021 - 2025 IMMREX7