@extends('layouts.app')
@section('title')
All Backups
@stop
@section('breadcrumb')
- Home
- All Backups
@stop
@section('content')
Administer Database Backup
# |
File |
Size |
Action |
@foreach($backups as $b)
{{$count++}} |
{{$b['file_name']}}
|
{{round($b['file_size'] / 1024 / 1024)}} MB
|
Download
Delete
|
@endforeach
@stop
@section('js')
@stop