15 lines
209 B
PHP
15 lines
209 B
PHP
<?php
|
|
|
|
namespace App\Models\Virtual;
|
|
|
|
use App\Core\Model;
|
|
|
|
class FlowPoolData extends Model
|
|
{
|
|
protected $table = 'virtual_flow_pool_data';
|
|
|
|
protected $casts = [
|
|
'settings' => 'array',
|
|
];
|
|
}
|