@extends(get_view('index')) @section('title'){{ translate('blog') }} - @endsection @section('menu-active-blog') active @endsection @section('header') @endsection @section('content') @include(get_view('components.pages.page-title'), ['title' => translate('blog')])
@if ( $posts != null && count($posts) > 0 ) @foreach ($posts as $post)
@if ( $post->image != null )
@endif
@endforeach
{{ $posts->links() }}
@else @include(get_view('components.errors.post-not-found')) @endif
@endsection @section('footer') @endsection