Files
2026-07-01 16:44:17 +03:00

45 lines
1.0 KiB
PHP

<br><br>
@foreach (downloadLast() as $key )
{[ $sum = explode(',',$key->sumx); ]}
<div class="container">
<div class="card">
<div class="card-header">
<h3 class="card-title">{{$key->name}}</h3>
</div>
<div class="card-body">
{{$key->content}}
<p style="padding:10px; background: #FBFCC9;" >
MD5SUM : <strong>{{$sum['0']}}</strong> <br> SHA1SUM: <strong>{{$sum['1']}}</strong> <br> SHA256: <strong>{{$sum['2']}}</strong>
</p>
<p>
<div class="table-responsive">
<table class="table table-bordered">
<thead class="thead-dark">
<tr>
<th scope="col">Ülke</th>
<th scope="col">Link</th>
</tr>
</thead>
<tbody>
@foreach(downloadUrl($key->id) as $key1)
<tr>
<td>{{countriesName($key1->country)}}</td>
<td><a href="{{$key1->link}}" data-id="{{$key1->id}}" class="download">{{$key1->link}}</a></td>
</tr>
@endforeach
</tbody>
</table>
</div>
</p>
</div>
</div>
</div>
@endforeach