@extends('frontend.layouts.app') @section('title', 'हाम्रा ब्लगहरू') @section('meta', 'Welcome to Om Hospital and Research Center PVt. Ltd.') @section('content')
@foreach ($blogs as $blog)
{{$blog->name}}

{{Str::limit($blog->name_np ? $blog->name_np : $blog->name,25)}}

{{$blog->created_at->format('d M, Y')}}

{!!Str::limit($blog->content_np ? $blog->content_np : $blog->content, 125)!!}

थप पढ्नुहोस्
@endforeach
@endsection