@extends('website.layouts.app') @section('content') @include('website.layouts.crumb')

{{ @$title }}

{{--

The latest news, videos, and discussion topics

--}}
@foreach ($blogs as $blog)
blog-thumb-naile
{{ $blog->created_at->format('Y-m-d') }}

{{ $blog['name_' . getLang()] }}

{{ strip_tags(str_limit($blog['content_' . getLang()], 200)) }}

{{ trans('home.more') }}
@endforeach
@endsection