Files
blog/resources/views/blog/show.blade.php
2019-06-23 13:38:24 -04:00

15 lines
325 B
PHP

@extends('base')
@php
$parse = new Parsedown();
@endphp
@section('content')
<section>
<h1>{{$post->title}}</h1>
{!! $parse->text($post->md) !!}
</section>
<hr/>
<span>Para posts antiguos, ve al <a href="{{ route('blog.archive') }}">archivo</a></span>
@endsection