Files
api_arrahn/app/MohonAnggota.php
2026-06-14 15:14:02 +08:00

16 lines
302 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class MohonAnggota extends Model
{
protected $table = 'mohon_anggota';
protected $connection = 'mysql7';
protected $fillable = [
'tarikh', 'nokp', 'status', 'komen', 'siri', 'teller', 'pelulus', 'peloperasi'
];
}