@extends('layouts.app') @section('page-css') @endsection @section('content')
{{ $page_title }}
@if($ratings != NULL) @foreach ($ratings as $ratings_key => $ratings_value)
{{ $ratings_value->question }}
    @for ($i = 1; $i <= 5; $i++) @php($rating_score = ($ratings_value->rating_score >= $i ? ' active' : ''))
  • @endfor
@endforeach
Comment: {{ $ratings[0]->remarks }}
@else

No Rating Available.

@endif
@include('pages.includes.footer')
@endsection @section('page-js') @endsection