diff --git a/app/Http/Controllers/ClientPortal/NinjaPlanController.php b/app/Http/Controllers/ClientPortal/NinjaPlanController.php index f146037435c2..78fab8df7cf7 100644 --- a/app/Http/Controllers/ClientPortal/NinjaPlanController.php +++ b/app/Http/Controllers/ClientPortal/NinjaPlanController.php @@ -196,7 +196,7 @@ class NinjaPlanController extends Controller public function plan() { - // return $this->trial(); + return $this->trial(); //harvest the current plan $data = []; $data['late_invoice'] = false; diff --git a/resources/views/portal/ninja2020/plan/trial.blade.php b/resources/views/portal/ninja2020/plan/trial.blade.php index cfdb3635245b..75383b47ff75 100644 --- a/resources/views/portal/ninja2020/plan/trial.blade.php +++ b/resources/views/portal/ninja2020/plan/trial.blade.php @@ -5,15 +5,6 @@ -
-
-
-

- Enjoy 14 days of our Pro Plan -

-
    -
  • Unlimited Clients & Invoices & Quotes
  • -
  • Remove "Created by Invoice Ninja"
  • -
  • 10 Professional Invoice & Quote Templates
  • -
  • Send Invoice Emails Sent via Your Gmail
  • -
  • Attach Invoice PDF's to Client Emails
  • -
  • Customize Auto-Reminder Emails
  • -
  • Display Client E-Signatures on Invoices
  • -
  • Enable a Client "Approve Terms' Checkbox
  • -
-

- & Much More! -

-
-
-
-
-

- Start your 14 day Pro Trial! -

- -
- @csrf - - -
- - -
-
- - -
-
- -
-
-
-
+
+
+
+

+ Free Trial +

+

+ 14 Day Pro Plan! +

+ -
-
-
-
- -
-
-
-
- + + +
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ -
-
-
-
- @foreach($countries as $country) @endforeach
-
-
-
-
- -
-
- * At the end of your 14 day trial your card will be charged - $10/month. Cancel anytime. -
- -
+
+
+ +
+
+
+ * At the end of your 14 day trial your card will be charged $10/month. Cancel anytime. +
+
+ +
+ +
-
-
-

- Skip the 14-day trial and get a discounted annual upgrade! +
+
+

+ Pro Plan Includes +

+
    +
  • Unlimited Clients & Invoices & Quotes
  • +
  • Remove "Created by Invoice Ninja"
  • +
  • Send Invoice Emails via Gmail or MSN Accounts
  • +
  • 10 Professional Invoice & Quote Template Designs
  • +
  • Branded URL Option: "YourBrand".Invoicing.co"
  • +
  • Customize Invoice Designs & Email Templates
  • +
  • Create Client Subscriptions: Recurring & Auto-billing
  • +
  • API Integration with 3rd Party Apps & Platforms
  • +
  • Display Clients E-Signature on Invoices & Quotes
  • +
  • Setup Custom Payment Auto-Reminder Emails
  • +
+

+ & Much More! +

+
+
+

+
+

+ Skip the 14-day trial and go into a monthly or annual upgrade!

-
-
-
-
-

PRO Plan

-

- $100/year -

-

- Buy 10 months, get 2 free! -

-
-
-
Whats included
-
    -
  • Unlimited Clients & Invoicing
  • -
  • Remove "Created by Invoice Ninja"
  • -
  • API Integration with 3rd Party Apps
  • -
-

- & Much More! -

- Buy Now! -
-
-
-
-
-
-

Enterprise Plan

-

- $140/year -

-

- Buy 10 months, get 2 free! -

-
-
-
Whats included
-
    -
  • Additional Account Users
  • -
  • Fully Branded Client Portal
  • -
  • Attach 3rd Party Documents
  • -
-

- & Much More! -

- Buy Now! -
+
+
+ + + +
+ +
+
+
+
+

Ninja Pro

+

+ Pay annually for 10 months + 2 free! +

+

+ $10Per month +

+ +
+
+
All Free Features +
+
    +
  • Unlimited Clients & Invoices
  • +
  • Remove "Created by Invoice Ninja"
  • +
  • Email Invoices via Gmail & MSN
  • +
  • Branded URL: 'YourSite".Invoicing.co'
  • +
  • 10 Professional Invoice Templates
  • +
  • Customize Invoice Designs
  • +
  • Recurring & Auto-Billing Invoices
  • +
  • API Integration with 3rd Party Apps
  • +
  • Password Protect Client-Side Portal
  • +
  • Set Up Auto-Reminder Emails
  • +
  • Auto-Attached Invoice PDF to Emails
  • +
  • Display Clients E-Signature on Invoices
  • +
  • Enable an 'Approve Terms' Checkbox
  • +
  • Reports: Invoices, Expenses, P&L, more
  • +
  • Bulk Email Invoices, Quotes, Credits
  • +
  • Interlink 10 Companies with 1 Login
  • +
  • Create Unique "Client Group" Settings
  • +
+
+
+
+
+
+
+

Enterprise

+

+ Pay annually for 10 months + 2 free! +

+

+ $14Per month +

+
+
+ + +
+
+ +
+
+
All Free Features +
+
    +
  • Create Additional Account Users (up to 20!) & Set Access Permissions per User
  • +
  • Attach Files to Emails & Client-Portal (pdf, jpg, ppt, xls, doc & more)
  • +
  • Fully Branded Client Portal: "Billing.YourCompany.com"
  • +
+
+
+
-
-
+
@endsection @@ -1333,7 +1712,7 @@ var elements = stripe.elements({ var cardElement = elements.create('card', { value: { postalCode: document.querySelector('input[name=postal_code]').content, - name: document.querySelector('input[name=name]').content + name: document.querySelector('input[name=name]').content, } }); @@ -1358,6 +1737,13 @@ var country_value = e.options[e.selectedIndex].value; payment_method_data: { billing_details: { name: document.querySelector('input[name=name]').content, + address: { + line1: document.querySelector('input[name=address1]').content, + line2: document.querySelector('input[name=address2]').content, + city: document.querySelector('input[name=city]').content, + postal_code: document.querySelector('input[name=postal_code]').content, + state: document.querySelector('input[name=state]').content, + } }, } })