106 lines
4.4 KiB (Stored with Git LFS)
PHP
106 lines
4.4 KiB (Stored with Git LFS)
PHP
@extends('backend.layouts.app')
|
|
|
|
@section('content')
|
|
|
|
<div class="aiz-titlebar text-left mt-2 mb-3">
|
|
<div class="align-items-center">
|
|
<h1 class="h3">{{translate('Product Reviews')}}</h1>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<div class="row flex-grow-1">
|
|
<div class="col">
|
|
<h5 class="mb-0 h6">{{translate('Product Reviews')}}</h5>
|
|
|
|
</div>
|
|
<div class="col-md-6 col-xl-4 ml-auto mr-0">
|
|
<form class="" id="sort_by_rating" action="{{ route('reviews.index') }}" method="GET">
|
|
<div class="" style="min-width: 200px;">
|
|
<select class="form-control aiz-selectpicker" name="rating" id="rating" onchange="filter_by_rating()">
|
|
<option value="">{{translate('Filter by Rating')}}</option>
|
|
<option value="rating,desc">{{translate('Rating (High > Low)')}}</option>
|
|
<option value="rating,asc">{{translate('Rating (Low > High)')}}</option>
|
|
</select>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<table class="table aiz-table mb-0">
|
|
<thead>
|
|
<tr>
|
|
<th data-breakpoints="lg">#</th>
|
|
<th>{{translate('Product')}}</th>
|
|
<th data-breakpoints="lg">{{translate('Product Owner')}}</th>
|
|
<th data-breakpoints="lg">{{translate('Customer')}}</th>
|
|
<th>{{translate('Rating')}}</th>
|
|
<th data-breakpoints="lg">{{translate('Comment')}}</th>
|
|
<th data-breakpoints="lg">{{translate('Published')}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($reviews as $key => $review)
|
|
@if ($review->product != null && $review->user != null)
|
|
<tr>
|
|
<td>{{ ($key+1) + ($reviews->currentPage() - 1)*$reviews->perPage() }}</td>
|
|
<td>
|
|
<a href="{{ route('product', $review->product->slug) }}" target="_blank" class="text-reset text-truncate-2">{{ $review->product->getTranslation('name') }}</a>
|
|
</td>
|
|
<td>{{ $review->product->added_by }}</td>
|
|
<td>{{ $review->user->name }} ({{ $review->user->email }})</td>
|
|
<td>{{ $review->rating }}</td>
|
|
<td>{{ $review->comment }}</td>
|
|
<td>
|
|
<label class="aiz-switch aiz-switch-success mb-0">
|
|
<input
|
|
@can('publish_product_review') onchange="update_published(this)" @endcan
|
|
value="{{ $review->id }}" type="checkbox"
|
|
@if($review->status == 1) checked @endif
|
|
@cannot('publish_product_review') disabled @endcan
|
|
>
|
|
<span class="slider round"></span>
|
|
</label>
|
|
</td>
|
|
</tr>
|
|
@endif
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
<div class="aiz-pagination">
|
|
{{ $reviews->appends(request()->input())->links() }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
@section('script')
|
|
<script type="text/javascript">
|
|
function update_published(el){
|
|
if(el.checked){
|
|
var status = 1;
|
|
}
|
|
else{
|
|
var status = 0;
|
|
}
|
|
$.post('{{ route('reviews.published') }}', {_token:'{{ csrf_token() }}', id:el.value, status:status}, function(data){
|
|
if(data == 1){
|
|
AIZ.plugins.notify('success', '{{ translate('Published reviews updated successfully') }}');
|
|
}
|
|
else{
|
|
AIZ.plugins.notify('danger', '{{ translate('Something went wrong') }}');
|
|
}
|
|
});
|
|
}
|
|
function filter_by_rating(el){
|
|
var rating = $('#rating').val();
|
|
if (rating != '') {
|
|
$('#sort_by_rating').submit();
|
|
}
|
|
}
|
|
</script>
|
|
@endsection
|