К
ui
?Size: a a a
К
ui
?V
ГW
V
VR
ГW
ГW
ГW
VR
VR
ГW
D
А
D
А
А
V
V
K
$mainNews = Post::select('id', 'title', 'body', 'created_at', 'counter', 'category_id')Вот У меня запросы 1 для вывода последних статей и другой из определенной категории. Итого у меня показывает 7 запросов
->where('category_id', 105)
->orderBy('created_at', 'DESC')
->limit(4)
->get();
$lastposts = Post::select('id', 'title','created_at', 'counter', 'category_id')
->with('category')
->orderBy('created_at', 'DESC')
->limit(6)
->get();