@extends('layouts.app') @section('metas') @endsection @section('content')
@if ($magazine)
Liber {{ $magazine->number }} Arte y Cultura

Editorial

@if ($editorial)

{!! mb_strimwidth(strip_tags($editorial->content), 0, 800, '...') !!}

@if ($json = json_decode($magazine->pdf)) @endif
@endif
@endif

Contenido

@foreach($articles as $a)
{{ @$a->subject->name }}

{{ mb_strimwidth(strip_tags($a->title), 0, 40, '...') }}

@if($a->author) Por {{ $a->author->name }} {{ $a->author->surname }} @endif
@endforeach

Archivo de la revista digital Liber

@foreach($magazines as $m)
Liber {{ $m->number }}
@if ($json = json_decode($m->pdf)) @endif
@endforeach
@endsection