40 lines
994 B
PHP
40 lines
994 B
PHP
@foreach (downloadLast() as $key )
|
|
{[ $sum = explode(',',$key->sumx); ]}
|
|
|
|
<div class="container main pt-5">
|
|
<h5 class="border-bottom mb-3">{{$key->name}}</h5>
|
|
<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
|