Files
monica/app/RelationshipTypeGroup.php
T
2018-04-01 20:46:51 -04:00

38 lines
706 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class RelationshipTypeGroup extends Model
{
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = ['id'];
protected $table = 'relationship_type_groups';
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = [
'delible' => 'boolean',
];
/**
* Get the account record associated with the reminder.
*
* @return BelongsTo
*/
public function account()
{
return $this->belongsTo(Account::class);
}
}