@extends('admin::layouts.admin') @section('title', 'Detail Ulasan') @section('content')
{{-- Page Header --}} {{-- Detail Card --}}
{{-- Card Header with Gradient --}}
Informasi Ulasan
Edit
{{-- Card Body --}}
{{-- Profile Section --}}
@if($ulasan->photo) {{ $ulasan->name }} @else @endif

{{ $ulasan->name }}

@if($ulasan->position)

{{ $ulasan->position }}

@endif
@for($i = 1; $i <= 5; $i++) @endfor ({{ $ulasan->rating }}/5)
{{-- Review Content --}}

{{ $ulasan->review }}

{{-- Detail Grid --}}

{{ $ulasan->order }}

{{ $ulasan->status == 'active' ? 'Aktif' : 'Tidak Aktif' }}

{{ $ulasan->created_at }}

{{-- Delete Modal --}} @endsection