photo/resources/views/catalog/deletereview.blade.php

35 lines
823 B
PHP
Raw Normal View History

2019-11-23 01:51:30 +00:00
@extends('adminlte::layouts.app')
@section('htmlheader_title')
Deletes
@endsection
@section('contentheader_title')
2019-12-15 00:30:29 +00:00
Review Pending Delete Items
2019-11-23 01:51:30 +00:00
@endsection
@section('contentheader_description')
2019-12-15 00:30:29 +00:00
{{ $catalog->count() }} to review
2019-11-23 01:51:30 +00:00
@endsection
@section('page_title')
Deletes
@endsection
2018-01-11 12:59:53 +00:00
2019-12-15 00:30:29 +00:00
@section('main-content')
<div class="col-12">
@if ($catalog->count())
<span class="pagination justify-content-center">{{ $catalog->links() }}</span>
2019-11-23 01:51:30 +00:00
2019-12-15 00:30:29 +00:00
<form action="{{ $return }}" method="POST">
{{ csrf_field() }}
2018-01-11 12:59:53 +00:00
2019-12-15 00:30:29 +00:00
@include('catalog.widgets.duplicates')
2018-01-11 12:59:53 +00:00
2019-12-15 00:30:29 +00:00
<div class="pb-2"><button class="btn btn-sm btn-danger">Confirm Delete</button></div>
2018-01-11 12:59:53 +00:00
2019-12-15 00:30:29 +00:00
<input type="hidden" name="pagenext" value="{{ $catalog->hasMorePages() ? $catalog->currentPage()+1 : NULL }}">
</form>
@else
NONE!
@endif
2018-01-11 12:59:53 +00:00
</div>
2019-11-23 01:51:30 +00:00
@endsection