@extends('layouts.app') @section('content')
@foreach($articles as $a)
{{ @$a->subject->name }}

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

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

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