@extends('layouts.client.layout') @section('title') {{ $title_meta->blog_title }} @endsection @section('meta') @endsection @section('client-content')
@if ($blogs->count()!=0)
@foreach ($blogs as $blog)
{{ $website_lang->where('lang_key','admin')->first()->custom_lang }} {{ $blog->created_at->format('F-d-Y') }}
@endforeach
{{ $blogs->links('client.paginator') }}
@else

{{ $website_lang->where('lang_key','blog_not_found')->first()->custom_lang }}

@endif
@endsection