SmartCane/laravel_app/resources/views/livewire/download/download-grid.blade.php
Martin Folkerts 4c730c0167 wip
2023-10-24 17:08:04 +02:00

25 lines
823 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 ($directories as $directory)
<div class="flex items-center justify-between">
<div class="break-all">
{!! Illuminate\Support\Carbon::parse($directory)->format('Y-m-d') !!}
</div>
</div>
@endforeach
</div>
</x-slot>
</x-action-section>
</div>