@if($testimonial->customer_image)
 }})
@else
@endif
{{ $testimonial->customer_name }}
@if($testimonial->customer_position)
{{ $testimonial->customer_position }}
@endif
@if($testimonial->company_name)
{{ $testimonial->company_name }}
@endif
@for($i = 1; $i <= 5; $i++)
@if($i <= floor($testimonial->rating))
@elseif($i - 0.5 <= $testimonial->rating)
@else
@endif
@endfor
{{ number_format($testimonial->rating, 1) }} / 5.0
{{ $testimonial->is_active ? 'Active' : 'Inactive' }}
@if($testimonial->short_description)
Short Description
{{ $testimonial->short_description }}
@endif
@if($testimonial->long_description)
Long Description
{!! nl2br(e($testimonial->long_description)) !!}
@endif
| Created: | {{ $testimonial->created_at->format('M d, Y H:i:s') }} |
| Updated: | {{ $testimonial->updated_at->format('M d, Y H:i:s') }} |
@if($testimonial->creator)
| Created By: | {{ $testimonial->creator->name }} |
@endif