@extends('Layouts.adminLayout') @section('title') {{__('List Backup')}} @endsection @section('css') @endsection @section('breadcrumb')
@endsection @section('content')
{{__('Insert Backup')}}
@php $i=1; @endphp @foreach($data['files'] as $value) @endforeach
{{__('Index')}} {{__('Name')}} {{__('Date')}} {{__('Size')}} {{__('Download')}}
{{$i++}} {{ $value['name'] }} {{ $value['date'] }} {{ $value['size'] }}
@endsection @section('script') @endsection