Files
api_arrahn/app/CawanganFeature.php
T
2026-09-08 14:48:13 +08:00

22 lines
342 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class CawanganFeature extends Model
{
protected $table = 'cawangan_feature';
protected $connection = 'mysql7';
protected $fillable = [
'kodcaw',
'feature',
'enabled',
];
protected $casts = [
'enabled' => 'integer',
];
}