{!! Form::label('id', 'Id:') !!}

{{ $contactUs->id }}

{!! Form::label('name', 'Name:') !!}

{{ $contactUs->name }}

{!! Form::label('email', 'Email:') !!}

{{ $contactUs->email }}

{!! Form::label('message', 'Message:') !!}

{{ $contactUs->message }}

{!! Form::label('status', 'Status:') !!}

@if($contactUs->status==App\Models\User::STATUS_INACTIVE)

Inactive

@elseif($contactUs->status==App\Models\User::STATUS_ACTIVE)

Active

@endif

{!! Form::label('created_by', 'Created By:') !!}

{{ $contactUs->getUser($contactUs->created_by) }}

{!! Form::label('created_at', 'Created At:') !!}

{{ $contactUs->created_at }}

{!! Form::label('updated_at', 'Updated At:') !!}

{{ $contactUs->updated_at }}