mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 08:44:49 +00:00
39 lines
1.3 KiB
PHP
39 lines
1.3 KiB
PHP
@extends('admin.partial.template')
|
|
|
|
@section('section')
|
|
<div class="title">
|
|
<h3 class="font-weight-bold">System</h3>
|
|
</div>
|
|
<hr>
|
|
<div class="row">
|
|
<div class="col-12 col-md-6">
|
|
<div class="card mb-3 border-left-blue">
|
|
<div class="card-body text-center">
|
|
<p class="font-weight-ultralight display-4 mb-0">{{$sys['pixelfed']}}</p>
|
|
</div>
|
|
<div class="card-footer font-weight-bold text-center bg-white">Pixelfed</div>
|
|
</div>
|
|
|
|
<div class="card mb-3 border-left-blue">
|
|
<div class="card-body text-center">
|
|
<p class="font-weight-ultralight display-4 mb-0">{{$sys['mysql']}}</p>
|
|
</div>
|
|
<div class="card-footer font-weight-bold text-center bg-white">MySQL</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-md-6">
|
|
<div class="card mb-3 border-left-blue">
|
|
<div class="card-body text-center">
|
|
<p class="font-weight-ultralight display-4 mb-0">{{$sys['php']}}</p>
|
|
</div>
|
|
<div class="card-footer font-weight-bold text-center bg-white">PHP</div>
|
|
</div>
|
|
<div class="card mb-3 border-left-blue">
|
|
<div class="card-body text-center">
|
|
<p class="font-weight-ultralight display-4 mb-0">{{$sys['redis']}}</p>
|
|
</div>
|
|
<div class="card-footer font-weight-bold text-center bg-white">Redis</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |