@extends('layouts.app')
@section('title',trans('backup.index_title'))
@section('content')
{{ trans('backup.index_title') }}
@lang('message.RestorBackupMessage')
{{--
{{ trans('backup.list') }}
--}}
# |
{{ trans('backup.file_name') }} |
{{ trans('backup.file_size') }} |
{{ trans('backup.created_at') }} |
{{ trans('backup.actions') }} |
@forelse($backups as $key => $backup)
{{ $key + 1 }} |
{{ $backup->getFilename() }} |
{{ formatSizeUnits($backup->getSize()) }} |
{{ convertDate(date('Y-m-d H:i:s', $backup->getMTime())) }} |
@if(auth()->user()->backup != "noRestor")
@endif
|
@empty
{{ trans('backup.empty') }} |
@endforelse
@include('backups.forms')
@endsection