15 lines
233 B
PHP
15 lines
233 B
PHP
<?php
|
|
|
|
namespace App\Model\helpdesk\Utility;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Form_visibility extends Model {
|
|
|
|
protected $table = 'form_visibility';
|
|
protected $fillable = [
|
|
'id', 'visibility'
|
|
];
|
|
|
|
}
|