@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/settings/general.backups') }} @parent @stop @section('header_right') {{ trans('general.back') }}
{{ Form::hidden('_token', csrf_token()) }}
@stop {{-- Page content --}} @section('content')
@foreach ($files as $file) @endforeach
File Created Size {{ trans('general.delete') }}
{{ $file['filename'] }} {{ $file['modified_display'] }} {{ $file['modified_value'] }} {{ $file['filesize'] }} @can('superadmin') {{ trans('general.delete') }} Restore @endcan

Upload Backup

{{ Form::open([ 'method' => 'POST', 'route' => 'settings.backups.upload', 'files' => true, 'class' => 'form-horizontal' ]) }} @csrf

{{ trans_choice('general.filetypes_accepted_help', 3, ['size' => Helper::file_upload_max_size_readable(), 'types' => '.zip']) }}

{!! $errors->first('image', '') !!}
{{ Form::close() }}

Restoring from Backup

You can use the restore () button to restore from a previous backup, however there are a few things you should know:



Backup files are located in: {{ $path }}

@stop @section('moar_scripts') @include ('partials.bootstrap-table') @stop