{{ trans('app.name') }}: {{ $giftCard->name }}
{{ trans('app.value') }}: {{ get_formated_currency($giftCard->value, 2, config('system_settings.currency.id')) }}
{{ trans('app.status') }}: @if ($giftCard->expiry_time < \Carbon\Carbon::now()) {{ trans('app.expired') }} @else {{ $giftCard->active ? trans('app.active') : trans('app.inactive') }} @endif
{{ trans('app.created_at') }}: {{ $giftCard->created_at->toDayDateTimeString() }}
{{ trans('app.updated_at') }}: {{ $giftCard->updated_at->toDayDateTimeString() }}
  • {{ trans('app.basic_info') }}
  • {{ trans('app.description') }}
{{ trans('app.pin_code') }}: {{ $giftCard->pin_code }}
{{ trans('app.serial_number') }}: {{ $giftCard->serial_number }}
{{ trans('app.allow_partial_use') }}: {!! $giftCard->partial_use ? '' : '' !!}
{{ trans('app.exclude_offer_items') }}: {!! $giftCard->exclude_offer_items ? '' : '' !!}
{{ trans('app.exclude_tax_n_shipping') }}: {!! $giftCard->exclude_tax_n_shipping ? '' : '' !!}
{{ trans('app.active_from') }}: {{ $giftCard->activation_time ? $giftCard->activation_time->toDayDateTimeString() : '' }}
{{ trans('app.active_till') }}: {{ $giftCard->expiry_time ? $giftCard->expiry_time->toDayDateTimeString() : '' }}
@if ($giftCard->description) {!! htmlspecialchars_decode($giftCard->description) !!} @else

{{ trans('app.description_not_available') }}

@endif