2024-01-07 15:23:41 +00:00
|
|
|
<div>
|
2024-03-21 13:30:35 +00:00
|
|
|
<x-team.navbar :team="auth()->user()->currentTeam()" />
|
2023-08-07 13:31:42 +00:00
|
|
|
<div class="flex items-start gap-2">
|
|
|
|
<h2 class="pb-4">S3 Storages</h2>
|
2024-03-21 13:30:35 +00:00
|
|
|
<x-slide-over fullScreen closeWithX>
|
|
|
|
<x-slot:title>New S3 Storage</x-slot:title>
|
|
|
|
<x-slot:content>
|
|
|
|
<livewire:team.storage.create />
|
|
|
|
</x-slot:content>
|
|
|
|
<button @click="slideOverOpen=true" class="button">+
|
|
|
|
Add</button>
|
|
|
|
</x-slide-over>
|
|
|
|
{{-- <a class="text-white hover:no-underline" href="/team/storages/new"> <x-forms.button>+ Add
|
|
|
|
</x-forms.button></a> --}}
|
2023-08-07 13:31:42 +00:00
|
|
|
</div>
|
|
|
|
<div class="grid gap-2 lg:grid-cols-2">
|
|
|
|
@forelse ($s3 as $storage)
|
2023-08-11 15:31:53 +00:00
|
|
|
<div x-data x-on:click="goto('{{ $storage->uuid }}')" @class(['gap-2 border cursor-pointer box group border-transparent'])>
|
2023-08-07 13:31:42 +00:00
|
|
|
<div class="flex flex-col mx-6">
|
|
|
|
<div class=" group-hover:text-white">
|
|
|
|
{{ $storage->name }}
|
|
|
|
</div>
|
|
|
|
<div class="text-xs group-hover:text-white">
|
|
|
|
{{ $storage->description }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@empty
|
|
|
|
<div>
|
|
|
|
<div>No storage found.</div>
|
|
|
|
</div>
|
|
|
|
@endforelse
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
function goto(uuid) {
|
|
|
|
window.location.href = '/team/storages/' + uuid;
|
|
|
|
}
|
|
|
|
</script>
|
2024-01-07 15:23:41 +00:00
|
|
|
</div>
|