@extends('layouts.admin')
@section('title', 'Logs')
@section('content')
@if(empty($data['file']))
No logs to show.
@else
Updated On: {{ $data['last_modified']->format('Y-m-d h:i a') }}
File Size: {{ round($data['size'] / 1024) }} KB
{{ $data['file'] }}
@endif
@endsection