@extends('frontend.layouts.amp') @section('title', 'Blog - ' . app_name()) @push('head-area') {{----}} @endpush @section('content')

Blog

@if($data['posts'])
@foreach($data['posts'] as $post) @php $link = '/blog/'.$post->slug; $image = '/up_data/blog/'.$post->image_thumbnail; @endphp

{{ $post->name }}

{{----}}

blob-article

{{ $post->short_content }}

@endforeach
{!! $data['posts']->appends( request()->except('page') )->links() !!}
@else

Sorry!, no blog posts found.

@endif
@endsection