@extends('layouts.blog-layout') @section('content') @if(count($data['blog']))
@foreach($data['blog'] as $blog)

{{$blog->title}}

{{strip_tags($blog->content,'
')}}

@endforeach
@endif @stop