@extends('frontends.layouts.index') @section('content')

{{ __('Tour Blog') }}

{{ __('Lets Share How You Feel Today.') }}

@foreach($blogs as $index => $blog)
Image

{{ $blog->getSelfTranslation('title') }}

{!! Str::limit($blog->get_only_string(), 300, '...') !!}
{{ __('Read more') }}
@if($index !== $total_blogs)
@endif @endforeach

@stop @section('script') @stop