intial commit

This commit is contained in:
2026-06-07 19:10:00 +07:00
commit 37bf240d23
230 changed files with 37141 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Reminder extends Model
{
use HasFactory;
protected $table = 'reminders';
protected $fillable = [
'judul',
'deskripsi',
'tanggal_reminder',
'id_desa',
];
}