@extends('welcome') @section('title', __('vouchers.seo_title')) @section('meta_description', __('vouchers.meta_description')) @section('content')

{{ __('vouchers.page_title') }}

Icon {{ strtoupper(__('vouchers.subtitle')) }}

{{ __('vouchers.page_title') }}

{{ __('vouchers.description') }}

@forelse($vouchers as $voucher) @php $imageUrl = $voucher->pro_img ? asset('images/product/' . $voucher->pro_img) : asset('assets/img/icon/voucher_card.svg'); $voucherTitle = $voucher->title; $voucherPrice = $voucher->voucher_shop_price; $voucherPriceFormatted = $voucher->voucher_shop_price_formatted; $categoryName = $voucher->category?->description() ?? __('vouchers.voucher'); // URL dinâmica $voucherUrl = ''; @endphp
{{ __('vouchers.voucher_badge') }}
{{ $voucherTitle }} @if($voucher->pro_highlight) {{ __('vouchers.highlight') }} @endif

{{ $voucherTitle }}

{{ $categoryName }}

@if($voucher->voucherTypeMeal)
{{ __('vouchers.valid_for') }}: {{ $voucher->voucherTypeMeal->description() }}
@endif
@if($voucherPrice > 0) {{ $voucherPriceFormatted }} {{ __('vouchers.per_voucher') }} @else {{ __('vouchers.consult') }} @endif
@empty

{{ __('vouchers.no_vouchers_available') }}

{{ __('vouchers.no_vouchers_message') }}

{{ __('vouchers.back_to_home') }}
@endforelse
@endsection @push('styles') @endpush @push('scripts') @endpush