forked from miguel456/rbrecruiter
14 lines
174 B
PHP
14 lines
174 B
PHP
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class Options extends Model
|
||
|
{
|
||
|
public $fillable = [
|
||
|
'option_name',
|
||
|
'option_value'
|
||
|
];
|
||
|
}
|