@extends(template().'layout.master') @push('name') @endpush @section('content')

{{ __($pageTitle) }}

@foreach ($blogs as $blog) @php $comment = App\Models\Comment::where('blog_id', $blog->id)->count(); @endphp
blog thumb
  • {{ @$blog->created_at->diffforhumans() }}
  • {{ $comment }} {{ __('comments') }}

{{ @$blog->data->title }}

{{ __('Read More') }}
@endforeach
{{ $blogs->links('backend.partial.paginate') }}
@endsection