@extends('cms.layouts.main') @section('content') @include('cms.layouts.headers.partials', ['title' => 'View Record'])

{{ $page_info['title'] }}

  • Title EN

    {{ $row->title }}


  • Title AR

    {{ $row->getTranslation('title', 'ar') }}


  • Title KU

    {{ $row->getTranslation('title', 'ku') }}


  • Created at

    {{ date('d M Y - h:i A', strtotime($row->created_at)) }}


  • Updated at

    {{ date('d M Y - h:i A', strtotime($row->updated_at)) }}

@include('cms.layouts.footers.auth')
@endsection