@extends('adminlte::layouts.app') @section('htmlheader_title') Duplicates @endsection @section('contentheader_title') Review Duplicate Items @endsection @section('contentheader_description') {{ $catalog->count() }} to review @endsection @section('page_title') Duplicates @endsection @section('main-content')
@if ($catalog->count()) {{ $catalog->links() }}
{{ csrf_field() }} @foreach ($catalog as $o) @if (! ($d=$o->duplicates()->with('software.model.make')->get())->count()) @continue @else @foreach($d as $item) @endforeach @endif @endforeach
Remove Source
@include('photo.widgets.thumbnail',['o'=>$o]) No other duplicates found? @include('photo.widgets.thumbnail',['o'=>$item])
{{-- --}}
@else NONE! @endif
@endsection