Files
web-site/Projects/Panel/Views/default/Download/detail.wizard.php
T
2026-07-01 16:44:17 +03:00

44 lines
1.3 KiB
PHP

<div class="widget-box">
<div class="widget-title"> <span class="icon"> <i class="fa fa-bars"></i> </span>
<h5>{{downloadEdit($id)->name}} - Detail</h5>
</div>
<div class="widget-content nopadding" >
<div class="block">
{{downloadEdit($id)->content}}
</div>
<div class="block">
<table class="table table-bordered">
<thead class="dark-thead">
<tr>
<th scope="col">Country</th>
<th scope="col">Link</th>
<th scope="col">Count</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
@foreach(downloadUrl($id) as $key1)
<tr>
<td class=" align-middle">{{countriesName($key1->country)}}</td>
<td class="align-middle">
<a href="{{URL::base($key1->link)}}" data-id="{{$key1->id}}" class="download">{{$key1->link}}</a>
</td>
<td class="center align-middle">
{{$key1->count}}
</td>
<td class="center">
<a href="{{URL::base('panel/download/linkedit/'.$key1->id)}}" class="btn btn-primary">Edit</a>
<a href="{{URL::base('panel/download/linkdelete/'.$key1->id)}}" class="btn btn-danger">Delete</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>