37 lines
768 B
PHP
37 lines
768 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
class Meteran extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'nomor_seri',
|
|
'user_id',
|
|
'tanggal_pasang',
|
|
];
|
|
|
|
protected $casts = [
|
|
'tanggal_pasang' => 'datetime',
|
|
];
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function meterReadings(): HasMany
|
|
{
|
|
return $this->hasMany(MeterReading::class);
|
|
}
|
|
public function petugas()
|
|
{
|
|
return $this->belongsTo(User::class, 'petugas_id');
|
|
}
|
|
} |