@extends('layouts.app') @section('title', __('lang_v1.backup')) @section('content')

@lang('lang_v1.backup')

@if (session('notification') || !empty($notification))
@if(!empty($notification['msg'])) {{$notification['msg']}} @elseif(session('notification.msg')) {{ session('notification.msg') }} @endif
@endif
@component('components.widget', ['class' => 'box-primary']) @slot('tool') @endslot @if (count($backups)) @foreach($backups as $backup) @endforeach
@lang('lang_v1.file') @lang('lang_v1.size') @lang('lang_v1.date') @lang('lang_v1.age') @lang('messages.actions')
{{ $backup['file_name'] }} {{ humanFilesize($backup['file_size']) }} {{ Carbon::createFromTimestamp($backup['last_modified'])->toDateTimeString() }} {{ Carbon::createFromTimestamp($backup['last_modified'])->diffForHumans(Carbon::now()) }} @lang('lang_v1.download') @lang('messages.delete')
@else

There are no backups

@endif
@lang('lang_v1.auto_backup_instruction'):
{{$cron_job_command}}
@lang('lang_v1.backup_clean_command_instruction'):
{{$backup_clean_cron_job_command}} @endcomponent
@endsection