@extends('../../master_layout/website_master') @section('title') {{env('APP_NAME')}} - Blog @endsection @section('heading')
Back

Blog

@php $escort_url = 'Blog'; $breadcrumb = array( array('title'=>$escort_url, 'url'=>'', 'active'=>'1') ); @endphp @include('website_view.component.breadcrumb', compact("breadcrumb"))
@endsection @section('content') @if (session('errors'))
@foreach($errors->all() as $message)
  • {{$message}}
  • @endforeach
    @endif

    Blog

    @if($posts->count()) @foreach($posts as $post) @include('website_view.discover.post-card', ['post'=> $post]) @endforeach @else

    There are no posts.

    @endif
    {{ $posts->links() }}
    @endsection