Cosmetic changes

This commit is contained in:
Deon George
2019-12-15 11:30:29 +11:00
parent ebfdf3f7d5
commit af1164e764
8 changed files with 65 additions and 128 deletions

View File

@@ -22,50 +22,9 @@
<form action="{{ $return }}" method="POST">
{{ csrf_field() }}
<table class="table table-striped table-sm table-hover table-bordered">
<thead>
<tr>
<th class="w-50">Remove</th>
<th class="w-50">Source</th>
</tr>
</thead>
@include('catalog.widgets.duplicates')
@foreach ($catalog as $o)
<tbody>
<tr>
<td>
<input type="hidden" name="items[]" value="{{ $o->id }}">
@include('photo.widgets.thumbnail',['o'=>$o])
</td>
@if (! ($d=$o->duplicates()->with('software.model.make')->get())->count())
<td>
No other duplicates found?
</td>
@continue
@else
@foreach($d as $item)
<td>
<input type="hidden" name="items[]" value="{{ $item->id }}">
@include('photo.widgets.thumbnail',['o'=>$item])
</td>
@endforeach
@endif
</tr>
</tbody>
@endforeach
<tfoot>
<tr>
<td colspan="2"><button class="btn btn-primary">Update</button></td>
</tr>
</tfoot>
</table>
{{--
<input type="hidden" name="pagenext" value="{{ $catalog->hasMorePages() ? $catalog->currentPage()+1 : NULL }}">
--}}
<div class="pb-2"><button class="btn btn-sm btn-primary">Update</button></div>
</form>
@else
NONE!