2019-12-26 05:46:35 +00:00
|
|
|
<?php $data = [
|
|
|
|
'Signature'=>['signature','signature'],
|
|
|
|
'File Signature'=>['file_signature','file_signature'],
|
2020-01-04 13:28:00 +00:00
|
|
|
'Date Created'=>['created','created'],
|
2019-12-26 05:46:35 +00:00
|
|
|
'Filename'=>['filename','filename'],
|
|
|
|
'Filesize'=>['filesize','filesize'],
|
|
|
|
'Dimensions'=>['height','dimensions'],
|
|
|
|
];?>
|
|
|
|
|
|
|
|
<div class="card card-widget">
|
|
|
|
<div class="card-header">
|
|
|
|
<div class="user-block">
|
2024-09-30 12:56:08 +00:00
|
|
|
<i class="fas fa-2x fa-camera float-left"></i><span class="username"><a href="{{ url('v/info',$o->id) }}">#{{ $o->id }} - {{ Str::limit($o->filename,12).Str::substr($o->filename,-16) }}</a></span>
|
|
|
|
<span class="description">{{ $o->created ? $o->created->toDateTimeString() : '-' }} @if($o->device)[{{ $o->device }}]@else <small><strong>[No Device Info]</strong></small> @endif</span>
|
2019-12-26 05:46:35 +00:00
|
|
|
</div>
|
2024-09-30 12:56:08 +00:00
|
|
|
|
2019-12-26 05:46:35 +00:00
|
|
|
<div class="card-tools">
|
|
|
|
<button type="button" class="btn btn-tool" data-card-widget="collapse"><i class="fa fa-minus"></i></button>
|
|
|
|
<button type="button" class="btn btn-tool" data-card-widget="remove"><i class="fa fa-times"></i></button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card-body">
|
2024-09-30 12:56:08 +00:00
|
|
|
<x-video.thumbnail :id="$o->id" :css="$css ?? NULL"/>
|
2019-12-26 05:46:35 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card-footer card-comments">
|
2024-09-30 12:56:08 +00:00
|
|
|
<table class="table table-sm table-striped">
|
|
|
|
<tr><th>ID</th><td><x-info :id="$o->id"/></td></tr>
|
|
|
|
|
2019-12-26 05:46:35 +00:00
|
|
|
@foreach($data as $k=>$v)
|
2024-09-30 12:56:08 +00:00
|
|
|
<tr @class(['bg-success'=>($reference->exists && ((string)$reference->{$v[1]} === (string)$o->{$v[1]}))])>
|
|
|
|
<th>{{$k}}</th>
|
|
|
|
<td>{!! $o->{$v[1]} !!}</td>
|
|
|
|
</tr>
|
2019-12-26 05:46:35 +00:00
|
|
|
@endforeach
|
2024-09-30 12:56:08 +00:00
|
|
|
|
|
|
|
<tr>
|
|
|
|
<th>Flag</th><td><x-checkbox name="flag" :id="$o->id" :checked="$o->flag"/></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Duplicate</th><td><x-checkbox name="duplicate" :id="$o->id" :checked="$o->duplicate"/></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>IGNORE Duplicate</th><td><x-checkbox name="ignore_duplicate" :id="$o->id" :checked="$o->ignore_duplicate"/></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Delete</th><td><x-checkbox name="remove" :id="$o->id" :checked="$o->remove"/></td>
|
|
|
|
</tr>
|
2019-12-26 05:46:35 +00:00
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|