59 lines
2.3 KiB
PHP
59 lines
2.3 KiB
PHP
|
||
<a href="{{URL::base('download/new')}}"><button class="btn btn-primary">+ New Download</button></a>
|
||
<h1>Download Management</h1>
|
||
|
||
|
||
<div class="widget-box">
|
||
<div class="widget-title"> <span class="icon"> <i class="fa fa-bars"></i> </span>
|
||
<h5>Download List</h5>
|
||
|
||
</div>
|
||
<div class="widget-content nopadding" >
|
||
|
||
<table class="table table-bordered ">
|
||
<thead class="dark-thead">
|
||
<tr>
|
||
<th>Date</th>
|
||
<th>Title</th>
|
||
<th width="20">Lang</th>
|
||
<th>status</th>
|
||
<th>Download count</th>
|
||
|
||
<th width="150">Operation</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
|
||
@foreach ($list as $key)
|
||
<tr>
|
||
<td class="align-middle center">
|
||
{{tcevir($key->createDate)}}
|
||
</td>
|
||
<td class="align-middle"><a href="{{URL::base('panel/download/edit/'.$key->id)}}"><i class="fa fa-edit"></i> {{$key->name}}</a></td>
|
||
<td class="align-middle center">{{$key->lang}}</td>
|
||
<td class="align-middle center"><button class="btn btn-warning downloadStatusChange" data-id="{{$key->id}}" data-status='{{$key->status}}'>{{$key->status}}</button></td>
|
||
<td>
|
||
@foreach(downloadUrl($key->id) as $key1)
|
||
<div class="country" style="width:60%;float: left;">
|
||
{{countriesName($key1->country)}}
|
||
</div>
|
||
|
||
<div class="count">
|
||
<span class="badge" style="width: 10%; text-align: center;">{{$key1->count}} </span>
|
||
</div>
|
||
|
||
@endforeach
|
||
</td>
|
||
|
||
<td class="align-middle center">
|
||
<a href="{{URL::base('panel/download/detail/'.$key->id)}}"><button class="btn btn-primary" title="Details View"><i class="fas fa-eye"></i></button></a>
|
||
<a href="{{URL::base('panel/download/copy/'.$key->id)}}"><button class="btn btn-success" title="Edit"><i class="fas fa-copy"></i></button></a>
|
||
<a href="{{URL::base('panel/download/delete/'.$key->id)}}" onclick="return confirm('Bu kaydı silmek istediğinize eminmisiniz?')"><button class="btn btn-danger" title="Deleted"><i class="fa fa-trash"></i></button></a>
|
||
</td>
|
||
</tr>
|
||
@endforeach
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|