@extends('layouts.admin_app') @section('title','Admin Dashboard') @section('content')

View

@include('flash-message')
ID {{$record->id}}
Status @if($record->status==1) Active @else Deactive @endif
Name {{$record->name}}
Email {{$record->email}}
Heading ( In English ) {{$record->heading_eng}}
Description ( In English ) {!! $record->description_eng !!}
Heading ( In Arabic ) {{$record->heading_ar}}
Description ( In Arabic ) {!! $record->description_ar !!}
Created at {{\Carbon\Carbon::parse($record->created_at)->format('d-m-Y')}}
Back
@endsection