single.blade.php 763 Bytes
Newer Older
Angel MAS committed
1
@extends('blog-public::layout')
Angel MAS committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

@section('content')
<h1>
	Titulo: {{$post->title}}
</h1>

<p>Portada:</p>
<img width="150" src="{{asset('storage/'.$post->cover)}}">
<p>
	Publicacion: {{$post->publication_date}}
</p>

<p>
	Tags: {{$post->tags}}
</p>


<p>
	Categoria: {{$post->category->name}}
</p>


<p>
	Contenido: {!! $post->body !!}
</p>

<p>
	Categorias: Listado de categorias:
</p>
<ul>
	@foreach($categories as $category)
		<li>
			{{$category->name}}
		</li>
	@endforeach
</ul>

<p>
	Listado de post relacionados con sus tags:
</p>
<ul>
	@foreach($otros as $entry)
		<li>
			<img width="100" src="{{asset('storage/'.$entry->cover)}}">
			<a href="{{route('show.blog', $entry->slug)}}">
				{{$entry->title}}
			</a>
		</li>
	@endforeach
</ul>

@endsection