mas mejoras generales al ui, me gusta hacer eso

This commit is contained in:
Daniel Cortés
2019-10-15 18:22:09 -03:00
parent 9f77ef6dd4
commit 2a6fc094fa
11 changed files with 74 additions and 38 deletions

View File

@@ -8,7 +8,7 @@
@foreach($setups as $setup)
<article>
<header>
<h1>{{$setup->title}}</h1>
<h1 class="post-title">{{$setup->title}}</h1>
</header>
{!! $parse->text($setup->md) !!}
</article>

View File

@@ -1,15 +0,0 @@
@extends('base')
@php
$parse = new Parsedown();
@endphp
@section('content')
<article>
<header>
<h1>{{$setup->title}}</h1>
</header>
{!! $parse->text($setup->md) !!}
</article>
<hr/>
@endsection