@for ($i = 1; $i <= 5; $i++)
@if ($i <= $rating->rating)
@else
@endif
@endfor
{{ $rating->rating }}
{{ optional($rating->user)->first_name.' '.optional($rating->user)->last_name }}
@php
$timezone = App\Models\Setting::where('name', 'default_time_zone')->value('val') ?? 'UTC';
$updatedAt = $rating->updated_at->setTimezone($timezone);
@endphp
{{ $updatedAt->format('d M, Y') }}