From 20293ca2584bfe7b276ddab80b974b1c04233e69 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Thu, 23 Aug 2018 19:02:22 -0600 Subject: [PATCH] Add admin backup settings view --- .../views/admin/settings/backups.blade.php | 74 +++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 resources/views/admin/settings/backups.blade.php 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