@extends('front.user.as-visitor.partials.layout' , ['active' => __('posts') , 'page' => __('posts')]) @section('visitor-content')
@lang('blogs')
{{--
--}} {{--
--}} {{-- --}} {{-- --}} {{--
--}} {{--
--}}
@if(isset($blogs) && $blogs->count())
@foreach($blogs as $blog)
{{ $blog->title }}

{{ $blog->title }}

  • {{ $blog->created_at->toDateString() }}

{{ strLimit($blog->content , 250 ) }}

@endforeach
@endif
@endsection