mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
8 lines
251 B
PHP
8 lines
251 B
PHP
@extends('portal.ninja2020.layout.app')
|
|
@section('meta_title', ctrans('texts.payments'))
|
|
|
|
@section('body')
|
|
<div class="flex flex-col">
|
|
@livewire('payments-table', ['company_id' => $company->id, 'db' => $company->db])
|
|
</div>
|
|
@endsection |