@extends('admin.layout.app') @section('title', 'Invoice ' . $invoice->invoice_number) @section('content')
โ† Back
{{-- โ”€โ”€ Header โ”€โ”€ --}}
Invoice
{{ $invoice->invoice_number }}
PAID
{{-- โ”€โ”€ Orange Stripe โ”€โ”€ --}}
{{-- โ”€โ”€ Meta Row โ”€โ”€ --}}
Issue Date
{{ $invoice->paid_at->format('M d, Y') }}
{{--
--}} {{--
Payment ID
--}} {{--
{{ Str::limit($invoice->stripe_payment_id, 24) }}
--}} {{--
--}}
Status
โœ“ Paid
{{-- โ”€โ”€ Addresses โ”€โ”€ --}}
From

CarsInstant LLC
123 Auto Drive, Suite 100
Houston, TX 77001
United States
billing@carsinstant.com

Bill To

{{ $invoice->vendor_name }}
{{ $invoice->vendor_email }}
@if($invoice->vendor->phone ?? null) {{ $invoice->vendor->phone }}
@endif Member since {{ $invoice->vendor->created_at->format('M Y') }}

{{-- โ”€โ”€ Items Table โ”€โ”€ --}}
Description Listing Limit Qty Amount
{{ $invoice->snapshot['title'] }} Package
Vendor listing package โ€” one-time payment
@if(!empty($invoice->snapshot['features']))
@foreach($invoice->snapshot['features'] as $feat) {{ $feat }} @endforeach
@endif
{{ $invoice->snapshot['limit'] }} Listings 1 ${{ number_format($invoice->amount, 2) }}
{{-- โ”€โ”€ Totals โ”€โ”€ --}}
Subtotal ${{ number_format($invoice->amount, 2) }}
Tax (0%) $0.00
Discount $0.00
Total Paid ${{ number_format($invoice->amount, 2) }}
{{-- โ”€โ”€ Payment Info โ”€โ”€ --}}
Payment Method

Stripe โ€” Credit / Debit Card  ยท  {{ $invoice->paid_at->format('M d, Y h:i A') }}

{{-- โ”€โ”€ Footer โ”€โ”€ --}}
@endsection