Denis Linnik

Results 3 comments of Denis Linnik

Yes, but it's better to add a 90 degree rotation for Collapse because it can be used in vertical menus ...

I made a new scope function ```php public function scopeWithTranslationOnly(Builder $query, string $translationField) { $query->with([ 'translations' => function (Relation $query) use ($translationField) { return $query->select($translationField, $this->getTranslationRelationKey()) ->where($this->getTranslationsTable().'.'.'language_id', LanguageFacade::getLanguage()->id); }, ]);...