cms/app/Models/CustomField.php

29 lines
485 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class CustomField extends Model
{
protected $fillable = [
'custom_post_type_id',
'label',
'name',
'type',
'options',
'required',
'sort_order',
];
protected $casts = [
'options' => 'array',
'required' => 'boolean',
];
public function customPostType()
{
return $this->belongsTo(CustomPostType::class);
}
}