@extends('layouts.app') @section('title','Blog - X Hosting BD') @section('content')

Blog & Articles

Web hosting tips, tutorials and technology news for Bangladeshi businesses

@forelse($posts as $post)
@if($post->featured_image)
{{ $post->title }}
@else
@endif
{{ $post->published_at?$post->published_at->format('d M Y'):'' }}

{{ $post->title }}

{{ Str::limit($post->excerpt??strip_tags($post->content),120) }}

Read More
@empty

No blog posts yet.

@endforelse
{{ $posts->links() }}
@endsection