You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/app/SpFrameType.php

26 lines
526 B

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class SpFrameType extends Model{
public $timestamps = false;
public function dependent_page()
{
return $this->belongsTo('App\\SpPageType', 'dependent_page_type_id');
}
public function getFrameInfoFormAttribute($value)
{
return json_decode($value, true);
}
public function setFrameInfoFormAttribute($value)
{
$this->attributes['frame_info_form'] = json_encode($value, JSON_UNESCAPED_UNICODE);
}
}