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

{{ $page_info['title'] }}

  • Publish

    {!! $row->publish ? '' : '' !!}

  • Title EN

    {{ $row->title }}


  • Location EN

    {{ $row->location }}


  • Text EN

    {{ $row->text }}


  • Title AR

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


  • Location AR

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


  • Text AR

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


  • Title KU

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


  • Location KU

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


  • Text KU

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


  • Phone Number

    {{ $row->phone_number }}


  • Lat

    {{ $row->lat }}


  • Lng

    {{ $row->lng }}


  • Directions

    @if($row->directions) @endif

  • Region

    {{ $row->Region->title }}


  • 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