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

{{ $page_info['title'] }}

  • Numbers

    {{ $row->numbers }}


  • Type

    {{ $row->type }}


  • Type AR

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


  • Type KU

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


  • Price

    {{ $row->price_formated }}


  • 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