@extends('admin.layouts.default') @section('title') | Testimonial Details @endsection @section('content')
ID | {{ $testimonial['id'] }} |
---|---|
Name | {{ $testimonial['name'] }} |
Comment | {{ $testimonial['comment'] }} |
Rating | {{ $testimonial['rating'] }} |
Status | {{ $testimonial['is_active'] == 1 ? 'Active' : 'In-Active' }} |
Image |
|
Created At | {{ Helper::utcToLocalDateTime($testimonial['created_at']) }} |
Updated At | {{ Helper::utcToLocalDateTime($testimonial['updated_at']) }} |