Files
investbrain/resources/views/import-export.blade.php
T

34 lines
925 B
PHP
Raw Normal View History

2024-08-07 18:29:23 -05:00
<x-app-layout>
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
2024-08-29 23:36:44 -05:00
@livewire('import-portfolios-field')
2024-08-27 22:41:13 -05:00
2024-10-20 10:06:06 -05:00
<x-section-border hide-on-mobile />
2024-08-07 18:29:23 -05:00
</div>
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
2024-08-27 22:41:13 -05:00
<x-forms.action-section>
2024-08-07 18:29:23 -05:00
<x-slot name="title">
{{ __('Export') }}
</x-slot>
<x-slot name="description">
{{ __('Download all of your portfolios and transactions.') }}
</x-slot>
<x-slot name="content">
<div class="col-span-6 sm:col-span-4">
2024-08-07 19:00:56 -05:00
@livewire('export-portfolios-button')
2024-08-07 18:29:23 -05:00
</div>
</x-slot>
</x-forms.form-section>
</div>
</x-app-layout>