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.
|
|
|
<?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',
|
|
|
|
'kelas_id'
|
|
|
|
];
|
|
|
|
|
|
|
|
public function transaksi(){
|
|
|
|
return $this->hasMany('App\Models\Transaksi','tagihan_id','id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function transaksiToday(){
|
|
|
|
return $this->transaksi()->whereDate('created_at', now()->today());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function role(){
|
|
|
|
return $this->hasMany('App\Models\Role','tagihan_id','id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function siswa(){
|
|
|
|
return $this->belongsToMany('App\Models\Siswa','role');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function kelas(){
|
|
|
|
return $this->hasOne('App\Models\Kelas','id','kelas_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getJumlahIdrAttribute(){
|
|
|
|
return "IDR. ".format_idr($this->jumlah);
|
|
|
|
}
|
|
|
|
}
|