{{ __('Customer Info') }}:
{{ $sale?->customer?->name }}
{{ $sale?->customer?->address }}
{{ __('Email') }}: {{ $sale?->customer?->email }}
{{ __('Phone') }}: {{ $sale?->customer?->phone }}
{{ __('Invoice Info') }}:
{{ __('Invoice') }}:
{{ $sale?->reference }}
{{ __('Date') }}:
{{ format_date($sale?->date) }}
{{ __('Status') }} :
@php
$badgeType = $sale?->status->getBadgeType();
@endphp
{{ $sale?->status->getName() }}
{{ __('Payment Status') }} :
@php
$type = $sale?->payment_status->getBadgeType();
@endphp
{{ $sale?->payment_status->getName() }}