3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus-Panel/resources/views/home.blade.php

20 lines
753 B
PHP
Raw Normal View History

2021-06-27 19:01:43 +00:00
@extends('layouts.main')
2020-02-26 13:59:58 +00:00
@section('content')
2021-06-29 20:05:00 +00:00
<div class="wrapper">
<div class="container-fluid">
<div class="col-lg-6 col-lg-offset-3 col-md-8 col-md-offset-2">
@if(!empty($message))
@component('components.panel')
@slot('title')
@php($time = strtotime($message->created_at))
{{ \App\Cache\Cache::getUsername($message->uuid) }}<span style="float: right">{{ date('d-m-Y', $time) }} at {{ date('H:m', $time) }}</span>
@endslot
{!! $message->content !!}
@endcomponent
@endif
2020-02-26 13:59:58 +00:00
</div>
</div>
</div>
@endsection