D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
kader-lms.com
/
app
/
Filename :
SmItemSell.php
back
Copy
<?php namespace App; use App\Scopes\ActiveStatusSchoolScope; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class SmItemSell extends Model { use HasFactory; protected static function boot (){ parent::boot(); static::addGlobalScope(new ActiveStatusSchoolScope); } public function roles(){ return $this->belongsTo('Modules\RolePermission\Entities\InfixRole', 'role_id', 'id'); } public function staffDetails(){ return $this->belongsTo('App\SmStaff', 'student_staff_id', 'id'); } public function parentsDetails(){ return $this->belongsTo('App\SmParent', 'student_staff_id', 'id'); } public function studentDetails(){ return $this->belongsTo('App\SmStudent', 'student_staff_id', 'id'); } public function paymentMethodName(){ return $this->belongsTo('App\SmPaymentMethhod','payment_method','id'); } public function bankName(){ return $this->belongsTo('App\SmBankAccount','account_id','id'); } }