feat: add AnggotaKeluarga, RiwayatBantuan, PermohonanTransfer models and migrations

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
GuavaPopper
2026-06-05 04:52:23 +07:00
parent 9bd5506f4f
commit e907100175
11 changed files with 210 additions and 2 deletions
+5
View File
@@ -17,4 +17,9 @@ class RumahIbadah extends Model
{
return $this->belongsTo(\App\Models\User::class);
}
public function bantuanDiberikan()
{
return $this->hasMany(RiwayatBantuan::class, 'ibadah_id');
}
}