Просмотр файла app/Models/Spam.php

Размер файла: 1.14Kb
<?php

declare(strict_types=1);

namespace App\Models;

use Illuminate\Database\Eloquent\Relations\MorphTo;

/**
 * Class Spam
 *
 * @property int    $id
 * @property string $relate_type
 * @property int    $relate_id
 * @property int    $user_id
 * @property int    $created_at
 * @property string $path
 */
class Spam extends BaseModel
{
    /**
     * The table associated with the model.
     */
    protected $table = 'spam';

    /**
     * Indicates if the model should be timestamped.
     */
    public $timestamps = false;

    /**
     * The attributes that aren't mass assignable.
     */
    protected $guarded = [];

    /**
     * Возвращает связанные объекты
     */
    public function relate(): MorphTo
    {
        return $this->morphTo('relate');
    }

    /**
     * Возвращает объект пользователя
     */
    public function getRelateUser(): ?User
    {
        if (! $this->relate) {
            return null;
        }

        if ($this->relate->user_id || $this->relate->author_id) {
            return $this->relate->author ?? $this->relate->user;
        }

        return null;
    }
}