@extends('welcome') @section('seo_title', 'Blog | ') @section('content')
{{__("Blog")}}
@foreach($articles as $n)
{{$n->created_at->format('d-M-Y')}}
{{substr($n->title,0,74)}} @if(strlen($n->title) > 74) ... @endif

{{substr(trim(strip_tags($n->content)),0,130)}} @if(strlen(trim(strip_tags($n->content))) > 130) ... @endif

@endforeach
@endsection