@extends('website.layouts.app') @section('title','Blog') @section('content')

Blog

Home / Blog Details

{{$bloging->name ?? ''}}

{!! $bloging->description ?? '' !!}



Recent Blogs

@foreach($blogs as $blog)
{{ $blog->name ?? '' }}

{!!Str::limit($blog->description, 120, $end='.......')!!}

Read more
@endforeach
@endsection