@extends('layouts.app') @section('title', 'Backup Detayı') @section('content')

Backup Detayı

Backup ID: #{{ $backup->id }}

@if($backup->status === 'completed')
@csrf
İndir @endif Geri

Temel Bilgiler

Tip
{{ $backup->type_label }}
Durum
{{ ucfirst($backup->status) }}
Oluşturan
{{ $backup->creator->name ?? 'Sistem' }}
Oluşturulma Tarihi
{{ $backup->created_at->format('d.m.Y H:i:s') }}
@if($backup->completed_at)
Tamamlanma Tarihi
{{ $backup->completed_at->format('d.m.Y H:i:s') }}
@endif

Dosya Bilgileri

@if($backup->file_name)
Dosya Adı
{{ $backup->file_name }}
@endif @if($backup->file_size)
Dosya Boyutu
{{ $backup->formatted_file_size }}
@endif @if($backup->file_path)
Dosya Yolu
{{ $backup->file_path }}
@endif @if($backup->description)
Açıklama
{{ $backup->description }}
@endif @if($backup->error_message)
Hata Mesajı
{{ $backup->error_message }}
@endif
@if($backup->metadata)

Metadata

{{ json_encode($backup->metadata, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES) }}
@endif
@endsection