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

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

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

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