@extends('layouts.web.app') @section('page_title') @lang('site.blogs') @endsection @section('content')

@lang('site.blogs')

@foreach($blogs as $blog)
Blog
{{$blog->category}}

{{$blog->title}}

{!! Str::words($blog->description, 10) !!}

@lang('site.read_more')
@endforeach
@endsection