芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/app/Models/Appreciation.php
'datetime', 'created_at' => 'datetime', 'updated_at' => 'datetime', ]; protected $appends = ['image_url']; protected $with = ['award']; public function getImageUrlAttribute() { return ($this->image) ? asset_url_local_s3('appreciation/' . $this->image) : ''; } public function awardTo(): BelongsTo { return $this->belongsTo(User::class, 'award_to')->withoutGlobalScope(ActiveScope::class); } public function addedBy(): BelongsTo { return $this->belongsTo(User::class, 'added_by')->withoutGlobalScope(ActiveScope::class); } public function award(): BelongsTo { return $this->belongsTo(Award::class); } }