mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Add BillingPortal Summary component and view
This commit is contained in:
parent
1290c19339
commit
488733651f
25
app/Livewire/BillingPortal/Summary.php
Normal file
25
app/Livewire/BillingPortal/Summary.php
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Invoice Ninja (https://invoiceninja.com).
|
||||||
|
*
|
||||||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||||||
|
*
|
||||||
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
||||||
|
*
|
||||||
|
* @license https://www.elastic.co/licensing/elastic-license
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace App\Livewire\BillingPortal;
|
||||||
|
|
||||||
|
use Livewire\Component;
|
||||||
|
|
||||||
|
class Summary extends Component
|
||||||
|
{
|
||||||
|
public array $context;
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return view('billing-portal.v3.summary');
|
||||||
|
}
|
||||||
|
}
|
15
resources/views/billing-portal/v3/summary.blade.php
Normal file
15
resources/views/billing-portal/v3/summary.blade.php
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<div class="space-y-4">
|
||||||
|
<h1 class="text-2xl">{{ ctrans('texts.order') }}</h1>
|
||||||
|
|
||||||
|
<div class="space-y-2">
|
||||||
|
<p>Lorem ipsum dolor sit amet.</p>
|
||||||
|
<p>
|
||||||
|
Lorem ipsum dolor sit amet consectetur adipisicing elit. Optio
|
||||||
|
voluptatem itaque sequi et omnis quaerat voluptatibus ex ad adipisci
|
||||||
|
expedita veniam nostrum nobis, doloribus error officiis repudiandae,
|
||||||
|
sed natus asperiores.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>Summary goes here.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
Loading…
x
Reference in New Issue
Block a user