@extends('layouts.app') @section('content')
{{ $section->name }}
@if ($a = $articles->get(0))
{{ $a->subject->name }}

{{ $a->title }}

{!! strip_tags($a->meta_description) !!}


@if($author = $a->author) Por {{ $a->author->name }} {{ $a->author->surname }} @endif
@endif
@foreach($articles->skip(1) as $a)
{{ $a->subject->name }}

{{ strip_tags($a->title) }}

{!! mb_strimwidth(strip_tags($a->meta_description), 0, 100, '...') !!}

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