@extends('layouts.app') @section('css') {{-- DataTable --}} @endsection @section('content')
@include('layouts.includes.sub_menu')
{{ __('General Settings') }} >> {{ __('Database Backups') }}
@if(Helpers::has_permission(Auth::user()->id, 'add_db_backup'))  {{ __('New Backup') }} @endif
@php $i=0; @endphp @foreach ($backupData as $data) @endforeach
# {{ __('Name') }} {{ __('Date') }} {{ __('Action') }}
{{ ++$i }} {{ $data->name }} {{ timeZoneformatDate($data->created_at) }}   {{ timeZonegetTime($data->created_at) }} @if(Helpers::has_permission(Auth::user()->id, 'edit_db_backup'))   @endif @if(Helpers::has_permission(Auth::user()->id, 'add_db_backup'))
{!! csrf_field() !!}
@endif
@endsection @section('js') @endsection