dbfdg
hasOne('App\Models\User', 'id', 'user_id');
}
public function userdetail()
{
return $this->hasOne('App\Models\UserDetail', 'user_id', 'user_id');
}
public function fetchgetRemark()
{
$remark = json_decode($this->remark, true);
if($remark)
{
$user_name = $this->user ? $this->user->name : '';
if($this->log_type == 'Invite User')
{
return $user_name . ' ' . __('has invited') . ' ' . $remark['title'] . '';
}
elseif($this->log_type == 'User Assigned to the Task')
{
return $user_name . ' ' . __('has assigned task ') . ' ' . $remark['task_name'] . ' ' . __(' to') . ' ' . $remark['member_name'] . '';
}
elseif($this->log_type == 'User Removed from the Task')
{
return $user_name . ' ' . __('has removed ') . ' ' . $remark['member_name'] . '' . __(' from task') . ' ' . $remark['task_name'] . '';
}
elseif($this->log_type == 'Upload File')
{
return $user_name . ' ' . __('Upload new file') . ' ' . $remark['file_name'] . '';
}
elseif($this->log_type == 'Create Bug')
{
return $user_name . ' ' . __('Created new bug') . ' ' . $remark['title'] . '';
}
elseif($this->log_type == 'Create Milestone')
{
return $user_name . ' ' . __('Create new milestone') . " " . $remark['title'] . "";
}
elseif($this->log_type == 'Create Task')
{
return $user_name . ' ' . __('Create new Task') . " " . $remark['title'] . "";
}
elseif($this->log_type == 'Move Task')
{
return $user_name . ' ' . __('Moved the Task') . " " . $remark['title'] . " " . __('from') . " " . __(ucwords($remark['old_stage'])) . " " . __('to') . " " . __(ucwords($remark['new_stage']));
}
elseif($this->log_type == 'Create Expense')
{
return $user_name . ' ' . __('Create new Expense') . " " . $remark['title'] . "";
}
elseif($this->log_type == 'Create Task')
{
return $user_name . ' ' . __('Create new Task') . " " . $remark['title'] . "";
}
elseif($this->log_type == 'Add Product')
{
return $user_name . ' ' . __('Add new Products') . " " . $remark['title'] . "";
}
elseif($this->log_type == 'Update Sources')
{
return $user_name . ' ' . __('Update Sources');
}
elseif($this->log_type == 'Create Deal Call')
{
return $user_name . ' ' . __('Create new Deal Call');
}
elseif($this->log_type == 'Create Deal Email')
{
return $user_name . ' ' . __('Create new Deal Email');
}
elseif($this->log_type == 'Move')
{
return $user_name . " " . __('Moved the deal') . " " . $remark['title'] . " " . __('from') . " " . __(ucwords($remark['old_status'])) . " " . __('to') . " " . __(ucwords($remark['new_status']));
}
}
else
{
return $this->remark;
}
}
public function logIcon()
{
$type = $this->log_type;
$icon = '';
if(!empty($type))
{
if($type == 'Invite User')
{
$icon = 'ti-user';
}
else if($type == 'User Assigned to the Task')
{
$icon = 'ti-user-check';
}
else if($type == 'User Removed from the Task')
{
$icon = 'ti-user-x';
}
else if($type == 'Upload File')
{
$icon = 'ti-cloud-upload';
}
else if($type == 'Create Milestone')
{
$icon = 'ti-crop';
}
else if($type == 'Create Bug')
{
$icon = 'ti-bug';
}
else if($type == 'Create Task')
{
$icon = 'ti-square-plus';
}
else if($type == 'Move Task')
{
$icon = 'ti-command';
}
else if($type == 'Create Expense')
{
$icon = 'ti-clipboard-list';
}
else if($type == 'Move')
{
$icon = 'ti-arrows-maximize';
}
elseif($type == 'Add Product')
{
$icon = 'ti-shopping-cart-plus';
}
elseif($type == 'Update Sources')
{
$icon = 'ti-brand-open-source';
}
elseif($type == 'Create Deal Call')
{
$icon = 'ti-phone-plus';
}
elseif($type == 'Create Deal Email')
{
$icon = 'ti-record-mail';
}
elseif($type == 'Create Invoice')
{
$icon = 'ti-file-plus';
}
elseif($type == 'Add Contact')
{
$icon = 'ti-notebook';
}
elseif($type == 'Create Task')
{
$icon = 'ti-list';
}
}
return $icon;
}
}