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