clrghouz/resources/views/domain/view.blade.php

9 lines
268 B
PHP
Raw Normal View History

2021-06-15 12:19:14 +00:00
@extends('layouts.app')
@section('htmlheader_title')
{{ $o->name }}
@endsection
@section('content')
<h1>{{ $o->name }} <small class="push-right">Last Update: {{ $o->updated_at }}</small></h1>
<p>{!! \Illuminate\Mail\Markdown::parse($o->homepage) !!}</p>
@endsection