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

@ -24,13 +24,13 @@
@foreach ($type->news->take(1) as $item)
<div class="single-featured-reports">
<div class="featured-reports-image">
<a href="news-details.php">
<a href="{{route('newsDetail',['alias' => $item->alias])}}">
<img src="{{ asset($item->thumb) }}" alt="image"
class="international-news-image">
</a>
<div class="featured-reports-content mt-30">
<h3>
<a href="news-details.php">{{ $item->short_description }}</a>
<a href="{{route('newsDetail',['alias' => $item->alias])}}">{{ $item->short_description }}</a>
</h3>
</div>
</div>
@ -49,7 +49,7 @@
<div class="row align-items-center">
<div class="col-lg-4 col-sm-4">
<div class="post-image-fluid">
<a href="news-details.php">
<a href="{{route('newsDetail',['alias' => $item->alias])}}">
<img src="{{ asset($item->thumb) }}" alt="image">
</a>
</div>
@ -58,7 +58,7 @@
<div class="post-content">
<h3>
<a
href="news-details.php">{{ $item->short_description }}</a>
href="{{route('newsDetail',['alias' => $item->alias])}}">{{ $item->short_description }}</a>
</h3>
</div>
</div>