whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
Modules
/
RestAPI
/
Entities
/
Upload File:
files >> /home/kckglobal/public_html/portal/Modules/RestAPI/Entities/UserChat.php
<?php namespace Modules\RestAPI\Entities; use App\Observers\NewChatObserver; class UserChat extends \App\Models\UserChat { public function __construct($attributes = []) { $this->appends = array_merge(['message_seen_status', 'message_time'], $this->appends); parent::__construct($attributes); } // region Properties protected $table = 'users_chat'; protected $fillable = [ 'from', 'to', 'message_seen', 'user_one', 'user_id', 'message', ]; protected $default = [ 'id', 'from', 'to', 'message_seen', 'user_one', 'user_id', 'message', ]; protected $hidden = [ ]; protected $dates = [ 'created_at', 'updated_at', ]; protected $guarded = [ 'id', ]; protected $filterable = [ 'id', 'from', 'to', 'message_seen', 'user_one', 'user_id', 'message', ]; public static function boot() { parent::boot(); static::observe(NewChatObserver::class); } public function getMessageSeenStatusAttribute() { return $this->to === api_user()->id ? $this->message_seen : 'yes'; } public function getMessageTimeAttribute() { return $this->created_at->diffForHumans(); } public function visibleTo(\App\Models\User $user) { if ($user->hasRole('admin') || $user->hasRole('employee')) { return true; } return false; } public function scopeVisibility($query) { if (api_user()) { $user = api_user(); if ($user->hasRole('admin')) { return $query; } if ($user->hasRole('employee')) { $query->where('agent_id', $user->id); return $query; } if ($user->hasRole('client')) { $query->where('user_id', $user->id); return $query; } return $query; } } }
Copyright ©2021 || Defacer Indonesia