disable penyata uncomplete

This commit is contained in:
hayatie
2025-12-10 12:01:04 +08:00
parent 90177859aa
commit d62e5f6105
3 changed files with 48 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Penyata extends Model
{
protected $table = 'penyata'; // optional if table name matches model
protected $primaryKey = 'id'; // optional if primary key is 'id'
public $timestamps = false; // set to true if table has created_at/updated_at
}