IMMREX7

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

<?php

namespace App;

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

class BusFeeDiscount extends Model
{
    use Traits\AutoUpdateUserColumns;

    protected $primaryKey = 'idBusFeeDiscount';
    protected $table = 'busfee_discounts';
    protected $fillable = ['created_by','updated_by','idStudent', 'idFinancialYear', 'idSchool', 'idBusFeehead', 'amount', 'percentage','remarks'];

    public function student() {
        return $this->belongsTo(AdmEntry::class, 'idStudent', 'idStudent');
    }

    public function feehead() {
        return $this->belongsTo(BusFeehead::class, 'idBusFeehead', 'idBusFeehead');
    }
}

Copyright © 2021 - 2025 IMMREX7