Edit File: headline.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 {{$search ? "justify-start gap-2" : "justify-between"}}"> <h2 class="lg:text-2xl md:text-lg">{{$title}}</h2> @if($search) <div class="flex"> <input placeholder="0" class="rounded-l-lg text-black border-gray-200 w-14 text-end" wire:model="query" /> <button class="bg-red-600 rounded-r-lg w-14">CARI</button> </div> @endif </div> </div> <div class="flex flex-no-wrap gap-4 justify-center md:justify-start overflow-auto"> {{ $slot }} </div> </div>
Back