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

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

@if(isset($blogs))
@foreach($blogs as $blog ) @if($blog->status == 1 && $blog->approved == 1)
{{ date('jS F Y', strtotime($blog->created_at)) }}
blog

{{ $blog->heading }}

{{substr(strip_tags($blog->detail), 0, 400)}}{{strlen(strip_tags($blog->detail))>400 ? '...' : ""}}


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

@endif @endsection