You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
636 B
PHP
33 lines
636 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class Tagihan extends Model
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $table = 'tagihan';
|
|
|
|
protected $fillable = [
|
|
'nama',
|
|
'jumlah',
|
|
'wajib_semua',
|
|
'hanya_kelas'
|
|
];
|
|
|
|
public function transaksi(){
|
|
return $this->hasMany('App\Models\Transaksi','tagihan_id','id');
|
|
}
|
|
|
|
public function role(){
|
|
return $this->hasMany('App\Models\Role','tagihan_id','id');
|
|
}
|
|
|
|
public function siswa(){
|
|
return $this->belongsToMany('App\Models\Siswa','role');
|
|
}
|
|
}
|