관리-도구
편집 파일: services.blade.php
@extends('layouts.apps') @section('content') <!-- breadcrumb-start --> <section class="breadcrumb-area wa-p-relative"> <div class="breadcrumb-bg-img wa-fix wa-img-cover"> <img class="wa-parallax-img" src="{{ asset('assets/gallery/bannerfront.jpg')}}" alt=""> </div> <div class="container bs-container-1"> <div class="breadcrumb-wrap"> <h1 class="breadcrumb-title wa-split-right wa-capitalize" data-split-delay="1.1s">Services <br> </h1> <div class="breadcrumb-list "> <a href="/">Home</a> <span>Services</span> </div> </div> </div> </section> <!-- breadcrumb-end --> <!-- work-process-start --> <section class="bs-work-process-area pt-90"> <div class="container bs-container-1"> <!-- section-title --> <div class="bs-work-process-sec-title mb-50"> <!-- <h4 class="bs-subtitle-4 "> <span class="text">Our Services</span> <span class="icon"> <img src="assets/gallery/icon.jpg" alt="CCTV Icon" style="width: 38px; height: 38px;"> </span> </h4> --> <style> /* Mobile View (≤768px) */ @media (max-width: 768px) { .bs-sec-title-1 { margin-top: -50px !important; /* adjust value as needed */ } } </style> <h2 class="bs-sec-title-1 wa-split-right wa-capitalize" data-cursor="-opaque">Securing What Matters Most. </h2> </div> <div class="bs-work-process-img wa-fix wa-img-cover pb-15"> <img src="{{ asset('assets/gallery/servicebanner1.jpg') }}" alt=""> </div> <p> At Flying Eye Security, we specialize in providing reliable security solutions that safeguard your property and peace of mind. With years of experience in this industry, our expert team deliver systems that are both effective and easy to use.<br><br> We offer a wide range of security and communication solutions designed to keep your premises safe and connected. Our services include advanced security systems that provide complete protection, high-quality CCTV surveillance for real-time monitoring, and efficient EPBAX systems that simplify internal communication. We also specialize in biometric systems for secure entry management, along with intercom systems that ensure smooth communication across all areas.<br><br> Our security systems are designed to offer complete protection with advanced features that are customized to your needs. Whether your property be residential, commercial, or industrial spaces, we ensure 24/7 monitoring with high-definition clarity. We provide CCTV surveillance solutions that help you keep an eye on what matters most.<br><br> </p> <style> .bs-h-4.title a:hover { color: #f16319; /* hover color — change to your desired color */ } </style> <div class="bs-work-process-item"> @foreach($service as $key => $item) <div class="bs-work-process-item-single"> <div class="item-img wa-fix wa-img-cover"> <img src="{{ asset('storage/' . $item->image) }}" style="height: 500px !important;" alt=""> </div> <div class="item-line"></div> <div class="content"> <h4 class="bs-h-4 number"> {{ sprintf('%02d', $key + 1) }} </h4> <h5 class="bs-h-4 title"> <a href="{{ route('servicedetails', $item->id) }}"> {{ $item->service_title }} </a> </h5> <h5 class="bs-h-5"> {{ $item->sub_title }} </h5> <p class="bs-p-4 disc"> {{ Str::limit(strip_tags($item->description), 250) }} </p> </div> </div> @endforeach </div> <br> </div> </section> <!-- work-process-end --> <style> /* Mobile View (≤768px) */ @media (max-width: 768px) { .bs-footer-4-area { margin-top: 30px !important; /* adjust the value as needed */ } } </style> @endsection