@extends('layouts.rider') @section('content') @if(Auth::user()->role_as == 11)
@else

Rider Ratings

Overall Rating: {{ $overallRating }}

@for ($i = 1; $i <= 5; $i++) @if ($i <= $overallRating) @else @endif @endfor
@forelse ($ratings as $rating) @empty @endforelse
Rating Comment
@for ($i = 1; $i <= 5; $i++) @if ($i <= $rating->rider_rating) @else @endif @endfor {{ $rating->comment }}
No ratings available.
@endif @endsection