13 lines
172 B
PHP
13 lines
172 B
PHP
@extends('base')
|
|
|
|
@php
|
|
$parse = new Parsedown();
|
|
@endphp
|
|
|
|
@section('content')
|
|
<section>
|
|
{!! $parse->text($now->md) !!}
|
|
</section>
|
|
<hr/>
|
|
@endsection
|