Edit File: homelist.blade.php
<div class="flex flex-col gap-4"> <div class="bg-gray-700 border-l-2 border-l-red-600 px-6 py-2"> <div class="flex w-full items-center "> <h2 class="lg:text-2xl md:text-lg">{{$title}}</h2> </div> </div> <div class="flex flex-no-wrap gap-4 justify-center md:justify-start overflow-auto"> {{ $slot }} </div> </div>
Back