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

25 lines
754 B
PHP

<div class="mt-10 sm:mt-0">
<x-action-section>
<x-slot name="title">
{{ __('Available Satellite data') }}
</x-slot>
<x-slot name="description">
{{ __('The grid has a date for every date the data has already been downloaded.') }}
</x-slot>
<!-- API Token List -->
<x-slot name="content">
<div class="space-y-6">
@foreach ($files as $file)
<div class="flex items-center justify-between">
<div class="break-all">
{{ $file }}
</div>
</div>
@endforeach
</div>
</x-slot>
</x-action-section>
</div>