34 lines
936 B
PHP
Raw Normal View History

2022-06-01 10:15:55 +03:00
<x-layouts.portal>
<x-slot name="title">
{{ trans_choice('general.dashboards', 1) }}
</x-slot>
2019-11-16 10:21:14 +03:00
2022-06-01 10:15:55 +03:00
<x-slot name="content">
<div class="grid sm:grid-cols-3 my-10 divide-y lg:divide-y-0 lg:divide-x space-y-10 lg:space-y-0">
<div class="lg:ltr:pr-12 lg:rtl:pl-12">
<x-widgets.contact />
2019-11-16 10:21:14 +03:00
2022-06-01 10:15:55 +03:00
@stack('column_left')
2019-11-16 17:53:58 +03:00
</div>
2021-06-04 16:21:05 +03:00
2022-06-01 10:15:55 +03:00
<div class="lg:px-12 pt-10 lg:pt-0 space-y-12">
<x-widgets.last-payment />
2021-06-04 16:21:05 +03:00
2022-06-01 10:15:55 +03:00
<x-widgets.outstanding-balance />
2021-06-04 16:21:05 +03:00
2022-06-01 10:15:55 +03:00
@stack('column_center')
2019-11-16 17:53:58 +03:00
</div>
2021-06-04 16:21:05 +03:00
2022-06-01 10:15:55 +03:00
<div class="lg:ltr:pl-12 lg:rtl:pr-12 pt-10 lg:pt-0 space-y-12">
<x-widgets.latest-invoices />
2021-06-04 16:21:05 +03:00
2022-06-01 10:15:55 +03:00
<x-widgets.invoice-history />
2021-06-04 16:21:05 +03:00
2022-06-01 10:15:55 +03:00
<x-widgets.payment-history />
2021-06-04 16:21:05 +03:00
2022-06-01 10:15:55 +03:00
@stack('column_right')
2019-11-16 10:21:14 +03:00
</div>
</div>
2022-06-01 10:15:55 +03:00
</x-slot>
</x-layouts.portal>