@extends('layouts.admin') @section('title', 'Detail Testimonial') @section('content_header')

Detail Testimonial

@stop @section('content')

{{ $testimonial->name }}

@if($testimonial->photo)
{{ $testimonial->name }}
@endif

{{ $testimonial->name }}

@if($testimonial->institution)

{{ $testimonial->institution }}

@endif @if($testimonial->review)

{{ $testimonial->review }}

@endif

{{ $testimonial->rating ?? '-' }}


{{ $testimonial->created_at->format('d M Y H:i') }}

{{ $testimonial->updated_at->format('d M Y H:i') }}

@stop @section('css') @stop