@extends('themes.one.master') @section('title') __('Blog Details') @endsection @section('content') @php use Carbon\Carbon; $date = $artical['date'] ?? null; $fromTime = $artical['from_time'] ?? null; $toTime = $artical['to_time'] ?? null; //Format date/time safely $dateLabel = $date ? Carbon::parse($date)->format('d M, Y') : ''; $fromLabel = $fromTime ? Carbon::parse($fromTime)->format('g:i A') : ''; $toLabel = $toTime ? Carbon::parse($toTime)->format('g:i A') : ''; @endphp
{{ transField($artical, 'title') }}
{{ transField($artical, 'title') }}
  • {{ $dateLabel }}
  • {{ $fromLabel }} - {{ $toLabel }}

{!! transField($artical, 'long_desc') !!}

@include('themes.one.sections.subscribe') @endsection