@extends('layouts.app') @section('page-title', __('Bot Ratings')) @section('content')
Total Ratings
Average Score
Thumbs Up
Thumbs Down
| Session ID | User | Phone | Type | Score | Thumb Rating | Comment | Date |
|---|---|---|---|---|---|---|---|
| {{ $rating->session_id }} | {{ $rating->user ? $rating->user->first_name . ' ' . $rating->user->last_name : 'Guest' }} | {{ $rating->phone_number }} | {{ ucfirst($rating->rating_type) }} | @if($rating->rating_score) @else - @endif | @if($rating->thumb_rating) @if($rating->thumb_rating == 'up') Up @else Down @endif @else - @endif | @if($rating->comment) {{ Str::limit($rating->comment, 50) }} @else - @endif | {{ $rating->created_at->format('Y-m-d H:i') }} |
| No ratings found. | |||||||