@extends('frontend.layouts') @section('content') Children’s Emotional & Bedtime Stories Home Kids’ Bedtime Kids’ Bedtime Stories Search All book @foreach($catagories->take(3) as $catagory) {{ $catagory->title }} @endforeach @if($catagories->count() > 3) More @foreach ($catagories->skip(3) as $catagory) {{ $catagory->title }} @endforeach @endif {{-- ================= ALL GENRE ================= --}} @foreach ($populars as $popular) {{ $popular->title }} {{ $popular->author }} {{-- $ {{ $popular->price }} --}} @endforeach {{-- ================= CATEGORY WISE ================= --}} @foreach($catagories as $catagory) @foreach($populars->where('category_id', $catagory->id) as $popular) {{ $popular->title }} {{ $popular->author }} {{-- $ {{ $popular->price }} --}} @endforeach @endforeach