27 lines
461 B
PHP
27 lines
461 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Sampah extends Model
|
|
{
|
|
protected $table = 'sampah';
|
|
protected $primaryKey = 'id_sampah';
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'tahun',
|
|
'bulan',
|
|
'total_sampah',
|
|
'total_kelola',
|
|
'total_daur_ulang',
|
|
'sisa_sampah',
|
|
];
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class, 'user_id');
|
|
}
|
|
}
|