@extends('GoBizOriginal::Website.layouts.index', ['nav' => true, 'banner' => false, 'footer' => true, 'cookie' => true, 'setting' => true, 'title' => __('NFC Card Order')]) {{-- Custom CSS --}} @section('custom-script') @endsection @section('content')
{{ __('NFC Card Ordering') }}

{{ __('Order NFC Cards For Your Business') }}

{{ __('Choose the NFC card package that fits your team. You can start with a single card or scale to bundles for your entire organization.') }}

@foreach ($availableNfcCards as $nfcCard)

{{ $nfcCard->nfc_card_name }}

{{ $nfcCard->nfc_card_price == 0 ? __('Free') : formatCurrency($nfcCard->nfc_card_price) }}

{{ $nfcCard->nfc_card_description }}

@guest {{ __('Login to Order') }} @else {{ __('Order Now') }} @endguest
@endforeach
@endsection