Answer the question
In order to leave comments, you need to log in
How to implement multicategories in news?
I am finishing the news module on the site. It is necessary to make it possible to add several categories to the news.
There are 2 tables:
public static function getNews(){
$getNews = News::where('status_news', 1)
->orderBy('id_news', 'desc')
->join('users', 'author_news', '=', 'id_users')
->join('category', 'id_category', '=', 'category_news')
->paginate(3);
return $getNews;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question