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

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

@if(isset($blogs))
@foreach($blogs as $blog)
@if($blog->created_at == !NULL) {{ date('jS F Y', strtotime($blog->created_at)) }} @endif
@if($blog->slug != NULL) @else @endif blog

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

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


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

@endif @endsection