@extends('layouts.master') @section('title') @lang('member.backups') @endsection @push('header_styles') @endpush @section('content') @component('components.breadcrumb') @slot('action_button2') @lang('common.back') @endslot @php $previous_url = url()->previous(); @endphp @slot('action_button2_link') {{ url($previous_url) }} @endslot @slot('action_button2_class') btn-dark @endslot @endcomponent

Database Backups

{{ csrf_field() }}
{{ csrf_field() }}
@if (count($backups)) @foreach($backups as $backup) @endforeach
File Name File Size Created Date Created Age Action
{{ $backup['file_name'] }} {{ \App\Http\Controllers\BackupController::humanFilesize($backup['file_size']) }} {{ date('F jS, Y, g:ia (T)',$backup['last_modified']) }} {{ \Carbon\Carbon::parse($backup['last_modified'])->diffForHumans() }} Download Delete
@else

No backups

@endif
@endsection @push('footer_scripts') @endpush