@extends('layouts.app') @section('title', $wirid->title . ' | Amalan') {{-- ================= SEO & SOCIAL SHARE ================= --}} @section('og_title', $wirid->title) @section('og_description', Str::limit( trim(strip_tags($wirid->content)), 150 ) ) @section('og_image', $wirid->thumbnail ? asset('storage/'.$wirid->thumbnail) : asset('images/awrad-icon.png') ) @section('content')
{{-- Breadcrumb --}} {{-- Main Card --}}
{{-- Header with badges --}}
@if($wirid->category) {{ $wirid->category->name }} @endif {{ $wirid->type === 'doa' ? 'Doa' : 'Wirid' }}

{{ $wirid->title }}

{{-- Content --}}
{{-- Arabic Text Section --}} @if($wirid->arabic_text)

Teks Arab

{{ $wirid->arabic_text }}
@endif {{-- Latin Text Section --}} @if($wirid->latin_text)

Teks Latin

{{ $wirid->latin_text }}
@endif {{-- Translation Section --}} @if($wirid->translation)

Terjemahan

{{ $wirid->translation }}
@endif {{-- Additional Notes Section (Optional) --}} @if($wirid->notes)

Catatan

{!! $wirid->notes !!}
@endif {{-- Source/Reference Section (Optional) --}} @if($wirid->source)
Referensi: {{ $wirid->source }}
@endif
{{-- Footer Actions --}}
Diperbarui: {{ $wirid->updated_at->translatedFormat('d M Y') }}
Kembali
{{-- Related Wirids --}} @if($relatedWirids->count() > 0)

Wirid & Doa Terkait

@endif
@push('scripts') @push('styles') @endpush @endpush @endsection