SmartCane/laravel_app/resources/views/livewire/projects/download-manager.blade.php
Martin Folkerts eb1def36a1 wip
2023-12-22 16:55:40 +01:00

17 lines
594 B
PHP

<x-tab-section>
<x-slot name="title">Download details</x-slot>
<x-slot name="description">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ipsa, reprehenderit.</x-slot>
<x-slot name="form">
<div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8">
<div class="mt-10 sm:mt-0">
<livewire:download.download-grid :project="$project"/>
</div>
<x-section-border />
<div class="mt-10 sm:mt-0">
@livewire('download.download-form')
</div>
</div>
</x-slot>
</x-tab-section>