diff --git a/resources/views/admin/settings/backups.blade.php b/resources/views/admin/settings/backups.blade.php new file mode 100644 index 000000000..7aa6ceba4 --- /dev/null +++ b/resources/views/admin/settings/backups.blade.php @@ -0,0 +1,74 @@ +@extends('admin.partial.template') + +@section('section') +
+

Site Backups

+
+
+
+
+
+
Settings
+
+
+
+ +
+ + +
+ + Enable automated backups with your own strategy. + +
+
+ + + + Select the backup frequency. + +
+
+ + + + You can use local, S3, or any S3 compatible object storage API to store backups. + +
+
+
+
+
+
+
+
Current Backups
+
+ @foreach($files as $file) + @if($file->isFile()) +
  • +

    {{$file->getFilename()}}

    +

    + + Size: {{App\Util\Lexer\PrettyNumber::convert($file->getSize())}} + + + Created: {{\Carbon\Carbon::createFromTimestamp($file->getMTime())->diffForHumans()}}

    + +

    +
  • + @endif + @endforeach +
    +
    + +
    +
    +@endsection \ No newline at end of file