芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/rentandbuyrealty.com/app/Models/Chats.php
belongsTo(Customer::class, 'sender_id'); } public function receiver() { return $this->belongsTo(Customer::class, 'receiver_id'); } public function property() { return $this->belongsTo(Property::class, 'property_id'); } public function getFileAttribute($file) { return $file != "" ? url('') . config('global.IMG_PATH') . config('global.CHAT_FILE') . $file : ''; } public function getAudioAttribute($value) { return $value != "" ? url('') . config('global.IMG_PATH') . config('global.CHAT_AUDIO') . $value : ''; } }