Add bill and remember buttons to frontend

This commit is contained in:
philipp lang 2021-07-15 21:19:33 +02:00
parent a3b52a0077
commit 8f6fdd6f2f
1 changed files with 6 additions and 2 deletions
resources/js/views/member

View File

@ -1,8 +1,8 @@
<template>
<div class="sidebar">
<div class="sidebar flex flex-col">
<sidebar-header :links="value.links" @close="$inertia.visit('/member')" title="Zahlungen"></sidebar-header>
<div class="custom-table custom-table-light custom-table-sm text-sm">
<div class="custom-table custom-table-light custom-table-sm text-sm flex-grow">
<header>
<div>Nr</div>
<div>Status</div>
@ -21,6 +21,10 @@
</div>
</div>
</div>
<div class="flex flex-col pb-6 px-6">
<a href="#" class="text-center btn btn-primary">Rechnung erstellen</a>
<a href="#" class="text-center mt-1 btn btn-primary">Erinnerung erstellen</a>
</div>
</div>
</template>