@extends('theme.master') @section('title', 'Blog') @section('content') @section('meta_tags') @endsection @include('admin.message')

{{ __('frontstaticword.Blog') }}

@if(isset($blogs))
@foreach($blogs as $blog) @if($blog->status == 1 )
@if($blog->date == !NULL) {{ date('Y m/d', strtotime($blog->date)) }} @endif

@if($blog->slug != NULL) {{ $blog->heading }} @else {{ $blog->heading }} @endif

{{mb_substr(preg_replace("/\r\n|\r|\n/",'',strip_tags(html_entity_decode($blog->detail))), 0, 200)}}


@endif @endforeach
{{ $blogs->links() }}

@endif @endsection @section('custom-script') @endsection