@extends('main') @section('styles') @endsection @section('page-title') {{ __('News') }} {{ __('Home') }} / {{ __('News') }} @endsection @section('content') @foreach ($articles as $key => $article) @if (@$article->photo) @elseif (@$article->image->small) @elseif (@$article->video) @else @endif {{ $article->title }} {!! str_limit(strip_tags($article->content), 150) !!} {{ __('Read more') }} @endforeach {{ $articles->links('vendor.pagination.mobile') }} @endsection @section('scripts') @endsection
{!! str_limit(strip_tags($article->content), 150) !!}