@extends('layouts.user') @php $schemaData = [ "@context" => "https://schema.org", "@type" => "Blog", "name" => "La Classe Translation Blog", "description" => "Explore our blog for helpful tips, resources, and guides related to translation, apostille services, and multilingual document solutions.", "url" => url('/blogs'), "publisher" => [ "@type" => "Organization", "name" => "La Classe Translation Pvt. Ltd.", "url" => url('/'), "logo" => [ "@type" => "ImageObject", "url" => asset('images/Logo-1.webp') ] ], "mainEntity" => [ "@type" => "ItemList", "itemListElement" => [ [ "@type" => "ListItem", "position" => 1, "url" => url('/blogs'), "name" => "Latest Blog Posts" ] ] ] ]; @endphp @section('title', 'La Classe Blogs | Translation Insights, Language & Localization') @section('description', 'Explore La Classe blogs for expert insights on translation, localization, multilingual content, language trends, global communication, and professional translations.') @section('keywords', 'La Classe blogs, La Classe Translation Services, translation blog, localization blog, language industry insights, multilingual content, translation tips, professional translation articles') @section('canonical', url('/blogs')) @section('og_image', asset('images/Logo-1.webp')) @section('schema') {!! json_encode($schemaData, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT) !!} @endsection @section('content')

La Classe Blog

Latest Updates, News, & Articles

@forelse($blogs as $blog)
{{-- Blog Image with Fallback --}} @if($blog->image) {{ $blog->title }} @else {{ $blog->title }} @endif
{{ $blog->title }}
{{-- Safe Date Formatting --}}

{{ $blog->created_at ? \Carbon\Carbon::parse($blog->created_at)->format('d M Y') : '' }}

{{-- Clean Summary Text --}}

{{ Str::limit(strip_tags($blog->description), 110) }}

{{-- Safe Link --}} Read More
@empty
Abhi koi blog post uplabdh nahi hai.
@endforelse
{{-- Pagination --}} @if(method_exists($blogs, 'links'))
{{ $blogs->links() }}
@endif
@endsection