59 lines
1.1 KiB
PHP
59 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class ContactLog extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'contact_logs';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'contact_id',
|
|
'author_id',
|
|
'author_name',
|
|
'action_name',
|
|
'objects',
|
|
];
|
|
|
|
/**
|
|
* Get the contact associated with the contact log.
|
|
*
|
|
* @return BelongsTo
|
|
*/
|
|
public function contact()
|
|
{
|
|
return $this->belongsTo(Contact::class);
|
|
}
|
|
|
|
/**
|
|
* Get the user associated with the contact log.
|
|
*
|
|
* @return BelongsTo
|
|
*/
|
|
public function author()
|
|
{
|
|
return $this->BelongsTo(User::class);
|
|
}
|
|
|
|
/**
|
|
* Get the JSON object.
|
|
*
|
|
* @param mixed $value
|
|
* @return mixed
|
|
*/
|
|
public function getObjectAttribute($value)
|
|
{
|
|
return json_decode($this->objects);
|
|
}
|
|
}
|