1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/resources/views/portal/ninja2020/payment_methods/index.blade.php
2020-06-15 17:34:26 +02:00

16 lines
440 B
PHP

@extends('portal.ninja2020.layout.app')
@section('meta_title', ctrans('texts.payment_methods'))
@section('header')
<div class="mt-5 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex sm:items-center">
<div class="inline-flex rounded-md shadow-sm">
</div>
</div>
@endsection
@section('body')
<div class="flex flex-col">
@livewire('payment-methods-table', ['client' => $client])
</div>
@endsection