34 lines
953 B
PHP
34 lines
953 B
PHP
@extends('admin.layouts.app')
|
|
|
|
@section('title', 'System Status')
|
|
|
|
@push('admin-app-scripts')
|
|
<script src="{{ asset('js/admin/page/system-status.js') }}"></script>
|
|
@endpush
|
|
|
|
@push('admin-app-styles')
|
|
<link href="{{ asset('css/admin/page/system-status.css') }}" rel="stylesheet">
|
|
@endpush
|
|
|
|
@section('admin-page-content')
|
|
<div class="row">
|
|
<div class="col">
|
|
<h1>System Status</h1>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col">
|
|
<table class="table table-striped table-hover table-dark table-sm system table-bordered">
|
|
<tbody>
|
|
@foreach($systemInfo as $info)
|
|
<tr>
|
|
<th>{{ $info['name'] }}</th>
|
|
<td class="value text-break">{{ $info['value'] }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
@endsection
|