$content = $pdf->content;
$content = $pdf->render();
вывести сумму из БД?
Но когда меняю расширение она уезжает.
вопрос мне под каждое расширение
писать расположение ее через media
->joinWith('comments')
Не понятно зачем join, я так понимаю надо -->with('comments')
. Ведь скорее всего нужна просто жадная загрузка.const BIG_COMMENT_SIZE = 28;
const SMALL_COMMENT_SIZE = 7;
public function getBigComments(){
return $this->getComments(self::BIG_COMMENT_SIZE);
}
public function getSmallComments(){
return $this->getComments(self::SMALL_COMMENT_SIZE);
}
Articles::find()
->with('smallComments')
->all();