14 lines
451 B
PHP
14 lines
451 B
PHP
<spark-invoices :user="user" :team="team" :billable-type="billableType" inline-template>
|
|
<div>
|
|
<!-- Update Extra Billing Information -->
|
|
<div v-if="billable">
|
|
@include('spark::settings.invoices.update-extra-billing-information')
|
|
</div>
|
|
|
|
<!-- Invoice List -->
|
|
<div v-if="invoices.length > 0">
|
|
@include('spark::settings.invoices.invoice-list')
|
|
</div>
|
|
</div>
|
|
</spark-invoices>
|