ultimatepos/Modules/Crm/Entities/CrmPhoneFollowUpLog.php

22 lines
406 B
PHP

<?php
namespace Modules\Crm\Entities;
use App\User;
use Illuminate\Database\Eloquent\Model;
class CrmPhoneFollowUpLog extends Model
{
protected $guarded = ['id'];
public function createdBy()
{
return $this->belongsTo(User::class, 'created_by');
}
public function phoneFollowUp()
{
return $this->belongsTo(CrmPhoneFollowUp::class, 'phone_follow_up_id');
}
}