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

{{ __('Testimonial Details') }}

{{ __('View testimonial information') }}

{{ __('Edit') }} {{ __('Back to Dashboard') }}
{{ __('Testimonial Content') }}
@if($testimonial->client_avatar) {{ $testimonial->client_name }} @else
@endif

{{ $testimonial->client_name }}

@if($testimonial->client_position)

{{ $testimonial->client_position }}

@endif @if($testimonial->client_company)

{{ $testimonial->client_company }}

@endif
{!! $testimonial->getRatingStars() !!}
{{ $testimonial->rating }} {{ Str::plural('star', $testimonial->rating) }}
{{ __('English Content') }}

{{ $testimonial->content_en }}

@if($testimonial->content_ar)
{{ __('Arabic Content') }}

{{ $testimonial->content_ar }}

@endif
@if($testimonial->portfolio)
{{ __('Associated Project') }}
@endif
@if($testimonial->client_email || $testimonial->client_phone || $testimonial->client_website)
{{ __('Contact Information') }}
@if($testimonial->client_email) @endif @if($testimonial->client_phone) @endif @if($testimonial->client_website) @endif
@endif
{{ __('Status & Settings') }}
{{ __('Status') }}: @if($testimonial->is_active) {{ __('Active') }} @else {{ __('Inactive') }} @endif
{{ __('Featured') }}: @if($testimonial->is_featured) {{ __('Yes') }} @else {{ __('No') }} @endif
{{ __('Display Order') }}: {{ $testimonial->display_order }}
{{ __('Published At') }}: @if($testimonial->published_at) {{ $testimonial->published_at->format('M d, Y H:i') }} @else {{ __('Not published') }} @endif
{{ __('Timestamps') }}
{{ __('Created') }}:
{{ $testimonial->created_at->format('M d, Y H:i') }}
{{ __('Last Updated') }}:
{{ $testimonial->updated_at->format('M d, Y H:i') }}
{{ __('Quick Actions') }}
@push('styles') @endpush @push('scripts') @endpush @endsection