@props([ 'prefix' => '', 'value' => '', 'suffix' => '', 'description' => '', 'quote' => '', 'button' => null, ])
{{-- Value display --}}
@if($prefix) {{ $prefix }} @endif {{ $value }} @if($suffix) {{ $suffix }} @endif
{{-- Description --}} @if($description)

{{ $description }}

@endif {{-- Quote --}} @if($quote)
{{ $quote }}
@endif {{-- Button --}} @if($button)
{{ $button['text'] ?? $button['label'] ?? '' }}
@endif