7bc405060c
Build Docker Image / build-backend (push) Successful in 22s
Co-authored-by: ISMAIL MASSERAN <topaz@ISMAILs-Macbook.local> Co-authored-by: ISMAIL MASSERAN <topaz@Mac.dlinkrouter.local> Co-authored-by: afrina <afrina@koppkb.com> Reviewed-on: #11
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',
|
|
];
|
|
}
|