22 lines
342 B
PHP
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',
|
|
];
|
|
}
|