@extends('theme.master') @section('title', 'Blog') @section('content') @include('admin.message') @php $gets = App\Breadcum::first(); @endphp @if(isset($gets))
@if($gets['img'] !== NULL && $gets['img'] !== '') @else {{ __('course')}} @endif

{{ __('Blog') }}

@endif @if(isset($blogs))
@foreach($blogs as $blog)
@if($blog->slug != NULL) blog @else blog @endif

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

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

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