username : backend-kynantio password : test-programmer-20205

This commit is contained in:
yose
2025-12-02 13:34:49 +07:00
parent efffe71082
commit 961c95553f
28 changed files with 658 additions and 160 deletions

No files matched your search

+14
View File
@@ -0,0 +1,14 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Poliklinik extends Model
{
use HasFactory;
protected $table = 'poliklinik';
protected $fillable = ['id_poliklinik', 'poliklinik_name', 'poliklinik_code', 'active'];
}