You've already forked Epicnabbo-Catalogus-Updated-Daily
35 lines
902 B
PHP
35 lines
902 B
PHP
<?php
|
|
|
|
namespace App\Models\Help;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Stevebauman\Purify\Facades\Purify;
|
|
|
|
class WebsiteHelpCenterTicketReply extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
|
|
public function ticket(): BelongsTo
|
|
{
|
|
return $this->belongsTo(WebsiteHelpCenterTicket::class, 'ticket_id');
|
|
}
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'user_id');
|
|
}
|
|
|
|
public function canDeleteReply()
|
|
{
|
|
return $this->user_id === Auth::id() || hasPermission('delete_website_ticket_replies');
|
|
}
|
|
|
|
protected function content(): \Illuminate\Database\Eloquent\Casts\Attribute
|
|
{
|
|
return \Illuminate\Database\Eloquent\Casts\Attribute::make(get: fn ($value) => Purify::clean($value));
|
|
}
|
|
}
|