minor fix

master
Константин 2023-09-07 11:15:16 +03:00
parent 7d0a4fdba1
commit 8112212c95
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ class Publication extends Model {
}
public function getPublishDateRusAttribute(): string {
return $this->published_at ? $this->published_at->format('d') . ' ' . $this->published_at->getTranslatedMonthName('Do MMMM') . ' ' . $this->published_at->format('Y') . ' г.' : 'когда-то';
return $this->published_at ? $this->published_at->format('d') . ' ' . $this->published_at->getTranslatedMonthName('Do MMMM') . ' ' . $this->published_at->format('Y') . ' г.' : 'Дата не указана';
}

View File

@ -1,5 +1,5 @@
<?php
return [
'maxsize' => 200 * 1024 * 1024
'maxsize' => 100 * 1024 * 1024
];