2019-11-09 02:52:04 +00:00
|
|
|
@extends('adminlte::layouts.app')
|
2019-11-08 10:43:36 +00:00
|
|
|
|
2019-11-23 01:51:30 +00:00
|
|
|
@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
|
2019-11-08 10:43:36 +00:00
|
|
|
|
2019-11-09 02:52:04 +00:00
|
|
|
@section('main-content')
|
2019-11-23 01:51:30 +00:00
|
|
|
<div class="col-12">
|
|
|
|
@if ($catalog->count())
|
|
|
|
<span class="pagination justify-content-center">{{ $catalog->links() }}</span>
|
|
|
|
|
|
|
|
<form action="{{ $return }}" method="POST">
|
|
|
|
{{ csrf_field() }}
|
2019-11-08 10:43:36 +00:00
|
|
|
|
2019-12-15 00:30:29 +00:00
|
|
|
@include('catalog.widgets.duplicates')
|
2019-11-08 10:43:36 +00:00
|
|
|
|
2019-12-15 00:30:29 +00:00
|
|
|
<div class="pb-2"><button class="btn btn-sm btn-primary">Update</button></div>
|
2019-11-23 01:51:30 +00:00
|
|
|
</form>
|
|
|
|
@else
|
|
|
|
NONE!
|
|
|
|
@endif
|
2019-11-08 10:43:36 +00:00
|
|
|
</div>
|
2019-11-23 01:51:30 +00:00
|
|
|
@endsection
|