@extends('admin.layout') @section('content')

{{ __('Backup') }}

{{ __('Backup Lists') }}

@csrf
@if (count($backups) == 0)

{{ __('NO BACKUP FOUND') }}

@else @foreach ($backups as $key => $backup) @endforeach
{{ __('#') }} {{ __('Data & Time') }} {{ __('Action') }}
{{$backup->created_at}}
@csrf
@csrf
@endif
@endsection