Вход Регистрация
Файл: app/Models/Vote.php
Строк: 53
<?php

declare(strict_types=1);

namespace 
AppModels;

use 
IlluminateDatabaseEloquentCollection;
use 
IlluminateDatabaseEloquentRelationsBelongsTo;
use 
IlluminateDatabaseEloquentRelationsHasMany;
use 
IlluminateDatabaseEloquentRelationsMorphMany;

/**
 * Class Vote
 *
 * @property int id
 * @property string title
 * @property string description
 * @property int count
 * @property int closed
 * @property int created_at
 * @property int topic_id
 * @property Topic topic
 * @property Collection answers
 */
class Vote extends BaseModel
{
    
/**
     * Indicates if the model should be timestamped.
     */
    
public $timestamps false;

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

    
/**
     * Morph name
     */
    
public static string $morphName 'votes';

    
/**
     * Возвращает топик
     */
    
public function topic(): BelongsTo
    
{
        return 
$this->belongsTo(Topic::class, 'topic_id')->withDefault();
    }

    
/**
     * Возвращает варианты ответов
     */
    
public function answers(): HasMany
    
{
        return 
$this->hasMany(VoteAnswer::class, 'vote_id')->orderBy('id');
    }

    
/**
     * Возвращает связь с голосованиями
     */
    
public function pollings(): MorphMany
    
{
        return 
$this->morphMany(Polling::class, 'relate');
    }
}
Онлайн: 8
Реклама