@extends('layouts.page') @section('content')

Blog

@php $settings = settings(); @endphp

{{ $blog->title }}

@if(isset($blog->image) && $blog->image!="") @php $image=asset(Storage::url('public/sections')).'/'.$blog->page->alias.'/'.$blog->image @endphp @else @php $image='' @endphp @endif blog image
{!! $blog->description !!}
TRENDING POSTS
@if (is_countable($trendingBlogs)) @foreach ($trendingBlogs as $blog) @if(isset($blog->image) && $blog->image!="") @php $image=asset(Storage::url('public/sections')).'/'.$blog->page->alias.'/'.$blog->image @endphp @else @php $image='' @endphp @endif @endforeach @endif
@endsection