belongsTo(PopulasiAyam::class, 'id_populasi'); } public function user() { return $this->belongsTo(User::class); } protected static function booted() { static::creating(function ($harian) { $harian->nama_batch = $harian->populasiAyam->nama_batch; }); } }