@extends('shop::customers.account.index') @section('page_title') {{ __('shop::app.customer.account.review.index.page-title') }} @endsection @section('account-content')
@if (count($reviews) > 1) @endif
{!! view_render_event('bagisto.shop.customers.account.reviews.list.before', ['reviews' => $reviews]) !!}
@if (! $reviews->isEmpty()) @foreach ($reviews as $review)
@endforeach
{{ $reviews->links() }}
@else
{{ __('customer::app.reviews.empty') }}
@endif
{!! view_render_event('bagisto.shop.customers.account.reviews.list.after', ['reviews' => $reviews]) !!}
@endsection