@extends('template.template') @section('custom_style') @include('../navbar')

Testimonials

Terima kasih untuk semua pelanggan yang.
memberi kami ulasan dan peringkat.

@foreach ($ratings as $rating)

{{ $rating->kategori_nama }}

“{{ $rating->comment }}”

@php $username = $rating->username ?? $rating->no_pembeli ?? 'Guest'; $usernameLength = strlen($username); if ($usernameLength <= 5) { $sensorLength = 2; $start = floor(($usernameLength - $sensorLength) / 2); $censoredUsername = substr_replace($username, str_repeat('*', $sensorLength), $start, $sensorLength); } else { $sensorLength = 4; $start = floor(($usernameLength - $sensorLength) / 2); $censoredUsername = substr_replace($username, str_repeat('*', $sensorLength), $start, $sensorLength); } @endphp
{{ $censoredUsername }}
@for($i=1; $i<=5; $i++) @if($i <= $rating->bintang) @else @endif @endfor
{{ $rating->layanan }}
{{$rating->created_at}}
@endforeach
@include('../footer') @endsection