@extends('admin.layouts.layout') @section('content')

{{ $data->title }}

By {{ $data->author_name }}
Testimonial ID {{ $data->id }}
Title {{ $data->title }}
Sport {{ $data->sport_name ?? 'N/A' }}
Author Name {{ $data->author_name }}
Author Address {{ $data->author_address ?? 'N/A' }}
Rating
@for($i = 1; $i <= 5; $i++) @if($i <= $data->rating) @else @endif @endfor ({{ $data->rating }}/5)
Testimonial Content

{{ $data->testimonial_content }}

{{ $data->author_name }}
Status {{ $data->statuses[$data->status]['name'] }}
Created Date {{ \App\Helpers\Helper::showdate($data->created_at, true) }}
Updated Date {{ \App\Helpers\Helper::showdate($data->updated_at, true) }}
@endsection