Skip to content

Commit e01275b

Browse files
author
Ndubuisi Samuel
committed
fix compatibility with laravel-backup v6
1 parent d3ac918 commit e01275b

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

resources/views/index.blade.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@
9494
<th>Name</th>
9595
<th>Disk</th>
9696
<th>Reachable</th>
97-
<th>Healthy</th>
9897
<th># of backups</th>
9998
<th>Newest backup</th>
10099
<th>Used storage</th>
@@ -105,13 +104,12 @@
105104
<td>{{ $backup[0] }}</td>
106105
<td>{{ $backup[1] }}</td>
107106
<td>{{ $backup[2] }}</td>
108-
<td>{{ $backup[3] }}</td>
109107
<td>{{ $backup['amount'] }}</td>
110108
<td>{{ $backup['newest'] }}</td>
111109
<td>{{ $backup['usedStorage'] }}</td>
112110
</tr>
113111
<tr class="collapse" id="trace-{{$index+1}}">
114-
<td colspan="8">
112+
<td colspan="7">
115113
<ul class="todo-list ui-sortable">
116114
@foreach($backup['files'] as $file)
117115
<li>

src/Backup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Backup extends Extension
1212
{
1313
public function getExists()
1414
{
15-
$statuses = BackupDestinationStatusFactory::createForMonitorConfig(config('backup.monitorBackups'));
15+
$statuses = BackupDestinationStatusFactory::createForMonitorConfig(config('backup.monitor_backups'));
1616

1717
$listCommand = new ListCommand();
1818

0 commit comments

Comments
 (0)