Answer the question
In order to leave comments, you need to log in
Display laravel product categories?
how to display categories of such a plan, with an indication of nesting,
while displaying all categories like this
$categories = DB::table('categories')
->LeftJoin('category_descriptions','category_descriptions.category_id','=','categories.id')
->select('categories.*','category_descriptions.name as category')
->where('category_descriptions.language_id','=', 1)
->orderBy('categories.id', 'ASC')->paginate(12);
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