format files lol
This commit is contained in:
@@ -1,20 +1,19 @@
|
||||
<div class="flex flex-col gap-2 flex-col-reverse">
|
||||
<div class="flex flex-col flex-col-reverse gap-2">
|
||||
@forelse($executions as $execution)
|
||||
<form class="border-1 bg-coolgray-300 p-2 border-dotted flex flex-col"
|
||||
@class([
|
||||
'border-green-500' => data_get($execution,'status') === 'success',
|
||||
'border-red-500' => data_get($execution,'status') === 'failed',
|
||||
])>
|
||||
<div>Started At: {{data_get($execution,'created_at')}}</div>
|
||||
<div>Status: {{data_get($execution,'status')}}</div>
|
||||
@if(data_get($execution,'message'))
|
||||
<div>Message: {{data_get($execution,'message')}}</div>
|
||||
<form class="flex flex-col p-2 border-dotted border-1 bg-coolgray-300" @class([
|
||||
'border-green-500' => data_get($execution, 'status') === 'success',
|
||||
'border-red-500' => data_get($execution, 'status') === 'failed',
|
||||
])>
|
||||
<div>Started At: {{ data_get($execution, 'created_at') }}</div>
|
||||
<div>Status: {{ data_get($execution, 'status') }}</div>
|
||||
@if (data_get($execution, 'message'))
|
||||
<div>Message: {{ data_get($execution, 'message') }}</div>
|
||||
@endif
|
||||
<div>Size: {{data_get($execution,'size')}} B / {{round((int)data_get($execution,'size') / 1024,2)}}
|
||||
kB / {{round((int)data_get($execution,'size')/1024/1024,2)}} MB
|
||||
<div>Size: {{ data_get($execution, 'size') }} B / {{ round((int) data_get($execution, 'size') / 1024, 2) }}
|
||||
kB / {{ round((int) data_get($execution, 'size') / 1024 / 1024, 2) }} MB
|
||||
</div>
|
||||
<div>Location: {{data_get($execution,'filename')}}</div>
|
||||
<livewire:project.database.backup-execution :execution="$execution" :wire:key="$execution->id"/>
|
||||
<div>Location: {{ data_get($execution, 'filename') }}</div>
|
||||
<livewire:project.database.backup-execution :execution="$execution" :wire:key="$execution->id" />
|
||||
</form>
|
||||
@empty
|
||||
<div>No executions found.</div>
|
||||
|
||||
Reference in New Issue
Block a user