@extends('admin.layouts.layout') @section('content')
| 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 |
|
| 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) }} |