Initial commit for combined ProjectKP

This commit is contained in:
raditarahman5-cloud
2026-06-28 15:14:51 +07:00
commit ac6c3473d4
203 changed files with 41848 additions and 0 deletions
@@ -0,0 +1,23 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes; // ← TAMBAHAN
class Activity extends Model
{
use SoftDeletes; // ← TAMBAHAN
protected $fillable = [
'nama_kegiatan',
'keterangan',
'status',
'user_id'
];
public function user()
{
return $this->belongsTo(User::class);
}
}