16 lines
229 B
PHP
16 lines
229 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DataSetting extends Model
|
|
{
|
|
protected $table = "data_settings";
|
|
protected $fillable = [
|
|
"key",
|
|
"value",
|
|
"type"
|
|
];
|
|
}
|