mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-16 05:50:55 +08:00
16 lines
302 B
PHP
16 lines
302 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class SearchboxField extends NexusModel
|
|
{
|
|
protected $table = 'searchbox_fields';
|
|
|
|
protected $fillable = ['searchbox_id', 'field_type', 'field_id', ];
|
|
|
|
public function searchbox()
|
|
{
|
|
return $this->belongsTo(Searchbox::class, 'searchbox_id');
|
|
}
|
|
}
|