@if(auth('customer')->check())

{{trans('lang.rate_guide')}}

@csrf
@endif

{{trans('lang.some_guide_rates')}}

@foreach($rates as $row)
#

{{$row->user->name}}

{{$row->rate}}

{{$row->created_at->format('Y-m-d')}}

{{$row->comment}}

@endforeach
{{ $rates->appends(request()->input())->links()}}