14 lines
221 B
PHP
14 lines
221 B
PHP
@extends('layouts.app')
|
|
|
|
@php
|
|
use Illuminate\Support\Str;
|
|
@endphp
|
|
|
|
@section('content')
|
|
<div class="page-header">
|
|
<h1>关于</h1>
|
|
</div>
|
|
|
|
<div class="rich-text">{!! Str::markdown($content) !!}</div>
|
|
@endsection
|