Skip to content

Commit

Permalink
Update dynamic-page.blade.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Zakarialabib committed Dec 26, 2023
1 parent 897f955 commit 2b52f78
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions resources/views/livewire/front/dynamic-page.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,10 @@ class="mt-3 mx-auto text-md text-center leading-loose text-white dark:text-gray-
class="grid grid-cols-3 md:grid-cols-4 sm:grid-cols-2 bg-transpaent my-10 text-center gap-5 lg:px-5 d:mb-0 xl:mt-0">
@foreach ($this->services as $service)
<div
class="flex flex-col px-4 rounded-lg border-1 border-green-800 shadow-md w-full bg-white dark:bg-dark-eval-3">
<div class="w-full">
@if ($service?->image)
<img alt="{{ $service->title }}"
src="{{ asset('images/services/' . $service->image) }}"
class="w-full h-16 object-cover shadow-lg" lazy />
@endif
</div>
class="flex flex-col px-4 rounded-lg border-1 border-green-800 shadow-md w-full bg-white dark:bg-dark-eval-3">
<div
class="py-4 px-2 w-full lg:max-w-lg first-letter:mt-2 text-base text-gray-800 dark:text-gray-100">
{!! $service->content !!}
{{ $service->title }}
</div>
</div>
@endforeach
Expand Down

0 comments on commit 2b52f78

Please sign in to comment.