@extends('layouts/contentLayoutMaster') @section('title', 'Application Backups') @section('vendor-style') {{-- vendor css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
Generate Backup
@if(@count($backups) > 0)
@php $i = 1; @endphp @foreach(@$backups as $backup) @php $i++; @endphp @endforeach
# File Date Actions
{{ @$i}} {{ @$backup->path}} {{ date('Y-m-d h:i a', strtotime($backup->created_at)) }}
@else
No Record Found
@endif
@endsection @section('vendor-script') {{-- vendor files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection