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

Detail Testimonial

Lihat detail testimonial dari {{ $testimonial->client_name }}

Konten Testimonial

@if($testimonial->is_featured) Unggulan @endif @if($testimonial->is_active) Aktif @else Nonaktif @endif
"{{ $testimonial->testimonial }}"
@if($testimonial->rating)

Rating:

@for($i = 1; $i <= 5; $i++) @if($i <= $testimonial->rating) @else @endif @endfor ({{ $testimonial->rating }}/5)
@endif

Informasi Klien

@if($testimonial->client_photo)
{{ $testimonial->client_name }}
@else
@endif

{{ $testimonial->client_name }}

@if($testimonial->client_position || $testimonial->client_company)
@if($testimonial->client_position)
{{ $testimonial->client_position }}
@endif @if($testimonial->client_company)
{{ $testimonial->client_company }}
@endif
@endif
Nama Lengkap
{{ $testimonial->client_name }}
@if($testimonial->client_position)
Posisi/Jabatan
{{ $testimonial->client_position }}
@endif @if($testimonial->client_company)
Perusahaan
{{ $testimonial->client_company }}
@endif @if($testimonial->rating)
Rating
{{ $testimonial->rating }}/5 ⭐
@endif

Status & Info

Status @if($testimonial->is_active) Aktif @else Nonaktif @endif
Unggulan @if($testimonial->is_featured) Ya @else Tidak @endif
@if($testimonial->rating)
Rating
@for($i = 1; $i <= $testimonial->rating; $i++) @endfor ({{ $testimonial->rating }})
@endif
Dibuat

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

Terakhir Diupdate

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

Preview Frontend

Tampilan di halaman website

@if($testimonial->client_photo) {{ $testimonial->client_name }} @else
@endif @if($testimonial->rating)
@for($i = 1; $i <= 5; $i++) @if($i <= $testimonial->rating) @else @endif @endfor
@endif
"{{ Str::limit($testimonial->testimonial, 100) }}"
{{ $testimonial->client_name }}
@if($testimonial->client_position || $testimonial->client_company)
@if($testimonial->client_position && $testimonial->client_company) {{ $testimonial->client_position }} - {{ $testimonial->client_company }} @elseif($testimonial->client_position) {{ $testimonial->client_position }} @else {{ $testimonial->client_company }} @endif
@endif

Aksi

Edit Testimonial
@push('scripts') @endpush @endsection