@extends('layouts.app') @section('content')

Products

{{-- Free invoice plugin (always first) --}} @php $freeAvail = $productAvailability['free-invoice'] ?? 'open'; @endphp @if(! in_array($freeAvail, ['closed', 'auth']))

Free Agency Invoice Plugin

  • Full invoice building and auto delivery.
  • Partial and full gateway payments.
  • Dashboard and invoice management tools.
  • Custom invoice templating.
Free
@if($freeAvail === 'open') Download Free Plugin @else Not Available @endif
@endif @forelse($products as $product) @if($product) @php $avail = $productAvailability[$product->sku] ?? 'open'; @endphp @if(in_array($avail, ['closed', 'auth'])) @continue @endif

{{ $product->name ?? 'Unnamed Product' }}

{!! $product->description ?? '' !!}
${{ number_format($product->price ?? 0, 2) }} / monthly ${{ number_format(($product->price ?? 0) * 10, 2) }} / yearly
@if($avail === 'open')
@csrf
@else Not Available @endif
@endif @empty

No products available.

@endforelse
@endsection