@extends('frontend.layouts.app') @section('meta') @php $metaData = getMeta('blog'); @endphp @endsection @section('content')

{{ __(@$pageTitle) }}

@forelse($blogs as $blog)
img
{{ __(@$blog->category->name) }}

{{ __($blog->title) }}

By: {{ $blog->user->name }} / {{ $blog->created_at->format(' j M, Y') }}

{!! Str::limit($blog->details, 200) !!}

@empty
img
{{ __('Blog Not Found') }}
@endforelse
@if(@$blogs->hasPages()) {{ @$blogs->links('frontend.paginate.paginate') }} @endif
{{ __('Recent Blogs') }}
{{ __('Categories') }}
{{ __('Tags') }}
@endsection @push('script') @endpush