/home/techb158/ileadtechnology.com/resources/views/front/blog
NameSizeModeActions
blog.blade.php42590644editdlrm
blog_detail.blade.php24510644editdlrm
Edit: /home/techb158/ileadtechnology.com/resources/views/front/blog/blog.blade.php (4259B)
@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)
@if($blog->created_at == !NULL) {{ date('jS F Y', strtotime($blog->created_at)) }} @endif
blog

{{ $blog->heading }}

{{substr(strip_tags($blog->detail), 0, 400)}}


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

@endif @endsection