����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.216.239.73 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/./cbt.gltechlimited.com/resources/views/components/ |
Upload File : |
<section id="explore" class="border-b border-gray-100"> <div class="max-w-7xl mx-auto py-12 px-4 sm:py-28 sm:px-6 lg:px-8"> <div class="lg:text-center"> <h2 class="text-base text-secondary font-semibold tracking-wide uppercase">{{ __('Categories') }}</h2> <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-primary sm:text-4xl"> {{ $category['title'] }} </p> <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> {{ $category['subtitle'] }} </p> </div> <div class="mt-10 flex flex-wrap items-center justify-center gap-7"> @foreach($categories as $category) <div class="w-full sm:w-64 p-4 rounded border hover:shadow-lg"> <div class="flex justify-center items-center flex-col"> <div class="flex justify-center items-center flex-col mt-3"> <p class="font-medium leading-none text-gray-800">{{ $category->name }}</p> <p class="text-sm font-medium leading-none text-gray-600 mt-2">{{ $category->category->name }}</p> </div> </div> <div class="mt-8 w-full sm:w-56 h-9"> <a href="{{ route('explore', $category->slug) }}" class="focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-300 hover:opacity-90 flex items-center justify-center flex-1 h-full py-3 px-20 bg-primary border rounded border-primary"> <p class="text-sm font-medium leading-none text-white">{{ __('Explore') }}</p> </a> </div> </div> @endforeach </div> </div> </section>