Просмотр файла app/Models/Photo.php
- <?php
- declare(strict_types=1);
- namespace App\Models;
- use App\Traits\UploadTrait;
- use Exception;
- use Illuminate\Database\Eloquent\Collection;
- use Illuminate\Database\Eloquent\Relations\MorphMany;
- use Illuminate\Database\Eloquent\Relations\MorphOne;
- /**
- * Class Photo
- *
- * @property int id
- * @property int user_id
- * @property string title
- * @property string text
- * @property int created_at
- * @property int rating
- * @property int closed
- * @property int count_comments
- * @property Collection files
- */
- class Photo extends BaseModel
- {
- use UploadTrait;
- /**
- * Indicates if the model should be timestamped.
- *
- * @var bool
- */
- public $timestamps = false;
- /**
- * The attributes that aren't mass assignable.
- *
- * @var array
- */
- protected $guarded = [];
- /**
- * Директория загрузки файлов
- *
- * @var string
- */
- public $uploadPath = UPLOADS . '/photos';
- /**
- * Morph name
- *
- * @var string
- */
- public static $morphName = 'photos';
- /**
- * Возвращает комментарии фотографий
- *
- * @return MorphMany
- */
- public function comments(): MorphMany
- {
- return $this->morphMany(Comment::class, 'relate')->with('relate');
- }
- /**
- * Возвращает загруженные файлы
- *
- * @return MorphMany
- */
- public function files(): MorphMany
- {
- return $this->morphMany(File::class, 'relate');
- }
- /**
- * Возвращает связь с голосованием
- *
- * @return morphOne
- */
- public function polling(): morphOne
- {
- return $this->morphOne(Polling::class, 'relate')->where('user_id', getUser('id'));
- }
- /**
- * Удаление фото и загруженных файлов
- *
- * @return bool|null
- * @throws Exception
- */
- public function delete(): ?bool
- {
- $this->files->each(static function (File $file) {
- $file->delete();
- });
- return parent::delete();
- }
- }