@extends('stisla.layouts.app-table') @section('title', $title) @section('content') @include('stisla.includes.breadcrumbs.breadcrumb-table')
@if ($isShowFilter)

Filter berdasarkan bulan dan tahun

@csrf
@include('stisla.includes.forms.selects.select', [ 'id' => 'filter_month', 'name' => 'filter_month', 'options' => $array_bulan, 'label' => 'Bulan', 'required' => true, 'selected' => $month, ])
@include('stisla.includes.forms.selects.select', [ 'id' => 'filter_year', 'name' => 'filter_year', 'options' => $array_year, 'label' => 'Tahun', 'required' => true, 'selected' => $year, ])
Menampilkan data backup database di periode {{ namaBulan($month) }} {{ $year }}
@endif

{{-- Data --}}

@if (Auth::check()) @endif
@foreach ($data as $d) @if ($d['size_on_gb'] > 0) @elseif($d['size_on_mb'] > 0) @else @endif @endforeach
# Nama Ukuran Aksi
{{ $loop->iteration }} {{ $name = $d['name'] }} {{ $d['size_on_gb'] }} GB{{ $d['size_on_mb'] }} MB{{ $d['size_on_kb'] }} KB
@endsection @if (Auth::check()) @push('scripts')
@csrf @method('DELETE')
@csrf @method('PUT')
@endpush @endif @push('modal') @endpush @push('js') @endpush {{-- @include('stisla.import.axios') --}}