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

52 lines
1.6 KiB
PHP

<div class="container main pt-5">
@foreach (downloadLast() as $key )
{[ $sum = explode(',',$key->sumx); ]}
<div class="glass-card p-4 mb-5">
<h5 class="download-title">{{$key->name}}</h5>
<div class="download-desc">{{$key->content}}</div>
<div class="hash-box">
<div class="hash-row">
<span class="hash-label">MD5SUM</span>
<code class="hash-value">{{$sum['0']}}</code>
</div>
<div class="hash-row">
<span class="hash-label">SHA1SUM</span>
<code class="hash-value">{{$sum['1']}}</code>
</div>
<div class="hash-row">
<span class="hash-label">SHA256</span>
<code class="hash-value">{{$sum['2']}}</code>
</div>
</div>
<div class="table-responsive">
<table class="download-table">
<thead>
<tr>
<th>{{lang('download','country')}}</th>
<th>{{lang('download','link')}}</th>
<th class="text-end">{{lang('download','action')}}</th>
</tr>
</thead>
<tbody>
@foreach(downloadUrl($key->id) as $key1)
<tr>
<td class="country-cell">{{countriesName($key1->country)}}</td>
<td class="link-cell">
<span class="link-text">{{$key1->link}}</span>
</td>
<td class="text-end">
<a href="{{$key1->link}}" data-id="{{$key1->id}}" class="btn-download" download>
<i class="fas fa-download me-1"></i>{{lang('download','download')}}
</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
@endforeach
</div>