@extends('layouts.admin') @section('title', 'Ratings & Reviews') @section('content')
@forelse ($ratings as $rating) @empty @endforelse
Order Customer Restaurant Restaurant Rating Rider Rating Review
{{ $rating->order->order_number ?? '-' }} {{ $rating->customer->name ?? '-' }} {{ $rating->restaurant->name ?? '-' }} {{ $rating->restaurant_rating ?? '-' }} / 5 {{ $rating->rider_rating ?? '-' }} / 5 {{ \Illuminate\Support\Str::limit($rating->review_text, 40) }} View
No ratings yet.
{{ $ratings->links() }}
@endsection