Размер файла: 2.45Kb
<?php
namespace App\Models;
use App\Traits\UploadTrait;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\MorphMany;
/**
* Class Item
*
* @property int id
* @property int board_id
* @property string title
* @property string text
* @property int user_id
* @property int price
* @property string phone
* @property int created_at
* @property int updated_at
* @property int expires_at
* @property Board category
*/
class Item 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 . '/boards';
/**
* Возвращает категорию объявлений
*
* @return BelongsTo
*/
public function category(): BelongsTo
{
return $this->belongsTo(Board::class, 'board_id')->withDefault();
}
/**
* Возвращает загруженные файлы
*/
public function files(): MorphMany
{
return $this->morphMany(File::class, 'relate');
}
/**
* Возвращает путь к первому файлу
*
* @return mixed имя файла
*/
public function getFirstImage()
{
$image = $this->files->first();
$path = $image ? $image->hash : null;
return resizeImage($path, ['alt' => $this->title, 'class' => 'img-fluid']);
}
/**
* Обрезает текст
*
* @param int $limit
* @return string
*/
public function cutText($limit = 200): string
{
if (\strlen($this->text) > $limit) {
$this->text = strip_tags(bbCode($this->text), '<br>');
$this->text = mb_substr($this->text, 0, mb_strrpos(mb_substr($this->text, 0, $limit), ' ')) . '...';
}
return $this->text;
}
/**
* Удаление объявления и загруженных файлов
*
* @return bool|null
* @throws \Exception
*/
public function delete(): ?bool
{
$this->files->each(function($file) {
deleteFile(HOME . $file->hash);
$file->delete();
});
return parent::delete();
}
}