This commit is contained in:
tanch0
2024-06-18 11:31:51 +05:45
parent fcbaa0f679
commit 613dfd1834
116 changed files with 4829 additions and 1558 deletions

View File

@ -20,14 +20,14 @@
@foreach ($type->news as $item)
<div class="single-health-news">
<div class="health-news-image-fluid">
<a href="news-details.php">
<a href="{{route('newsDetail',['alias' => $item->alias])}}">
<img src="{{ asset($item->thumb) }}" alt="image-fluid">
</a>
</div>
<div class="health-news-content">
<h3>
<a href="news-details.php">{{ $item->title }}</a>
<a href="{{route('newsDetail',['alias' => $item->alias])}}">{{ $item->title }}</a>
</h3>
</div>
</div>