9 lines
268 B
PHP
9 lines
268 B
PHP
@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 |