@extends('layouts.admin') @section('title',__('Backup')) @section('content')
{{ __('All Backups') }}
{{ __('Create Database Backup') }}
@foreach($backups as $key=>$backup) @endforeach
{{ __('Sl') }} {{ __('File Name') }} {{ __('Size') }} {{ __('Created At') }} {{ __('Actions') }}
{{ $key + 1 }} {{ $backup['file_name'] }} {{ $backup['file_size'] }} {{ $backup['created_at'] }} {{ __('Download') }}
@endsection