first commit

This commit is contained in:
2026-06-16 10:45:41 +07:00
commit ccecc0bc6b
144 changed files with 124547 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class LastSyncedLog extends Model
{
protected $table = 'last_synced_logs';
public $timestamps = false;
protected $fillable = [
'surveillance_id',
'last_synced_date'
];
}