Enhance SolutionResource form functionality: add debounce to slug generation for improved user experience during input, and adjust layout in show.blade.php by reducing column width for better content presentation.
This commit is contained in:
@@ -27,7 +27,8 @@ class SolutionResource extends Resource
|
||||
->required()
|
||||
->maxLength(255)
|
||||
->reactive()
|
||||
->afterStateUpdated(fn (string $operation, $state, Forms\Set $set) => $operation === 'create' ? $set('slug', Str::slug($state)) : null),
|
||||
->afterStateUpdated(fn (string $operation, $state, Forms\Set $set) => $operation === 'create' ? $set('slug', Str::slug($state)) : null)
|
||||
->debounce('1000ms'),
|
||||
|
||||
Forms\Components\TextInput::make('slug')
|
||||
->required()
|
||||
|
||||
@@ -22,11 +22,23 @@
|
||||
<div class="services__details section-padding">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="col-lg-4">
|
||||
<div class="all__sidebar">
|
||||
<div class="all__sidebar-item">
|
||||
<h4>Download</h4>
|
||||
<div class="all__sidebar-item-download">
|
||||
<ul>
|
||||
<li><a href="#">Company Details<span class="fal fa-arrow-to-bottom"></span></a></li>
|
||||
<li><a href="#">Our Brochures<span class="fal fa-arrow-to-bottom"></span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-8">
|
||||
<div class="services__details-area">
|
||||
<img src="/web/assets/img/service/services-1.jpg" alt="image">
|
||||
<h3 class="mt-25 mb-20">Construction Planning</h3>
|
||||
<p class="mb-20">We pride ourselves on delivering high-quality construction services tailored to meet the unique needs of our clients. With years of experience in the industry, our team of skilled professionals is dedicated to bringing your vision to life. Whether you are looking to build a new structure, renovate an existing space, or need specialized construction services, we are here to help.</p>
|
||||
<h3 class="mt-25 mb-20">{{ $solution->title }}</h3>
|
||||
<p class="mb-20">{{ $solution->title_description }}</p>
|
||||
<p class="mb-25">With years of industry experience, our team handles every aspect of the construction process, your project runs smoothly and efficiently. We prioritize open communication, timely delivery, and quality workmanship to exceed your expectations. Trust us to provide innovative solutions that.</p>
|
||||
<h4 class="mb-20">Building with Unmatched Excellence</h4>
|
||||
<p>Transform your existing space with our renovation and remodeling services. Whether you want to update your kitchen, bathroom, or entire home, we bring innovative solutions to enhance your living space. Our team has extensive experience in commercial construction, including office buildings, retail spaces, and industrial facilities. We work closely with you to ensure your project align.</p>
|
||||
|
||||
Reference in New Issue
Block a user