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

Best FREE Professional Invoice Plugin for WordPress

This is not crippled software — the free plugin is fully functional with everything necessary for your agency billing and payment processes.

Built for real client management tasks every agency performs regularly.

Create invoices, send, track, and accept payments all in one place.

Add powerful extra features as you find the need for them.

Add shopping cart and product listings to extend your business.

✔ Fully usable free software for WordPress
✔ Built for real-world agency use
✔ Accept partial and full gateway payment
✔ Secure and automation ready
Founder
Designed by Agency Owners

Built upon years of real client billing experience to help you run your business.

Powerful Add-Ons When You Need Them

Start free. Expand when your agency demands more control, automation, and protection.

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

{{ $product->name ?? 'Free Agency Invoice Plugin' }}

  • Full invoice building and auto delivery.
  • Partial and full gateway payments.
  • Dashboard and invoice management tools.
  • Custom invoice templating.
${{ number_format(($product->price ?? 0) * 10, 2) }} / yearly ${{ number_format($product->price ?? 0, 2) }} / monthly
@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) * 10, 2) }} / yearly ${{ number_format($product->price ?? 0, 2) }} / monthly
@if($avail === 'open')
@csrf
@else Not Available @endif
@endif @empty

No products available.

@endforelse
@endsection