@extends('master') @section('title') View Contact Form @endsection @section('content')

View Contact Form

@if($contactform)

Full Name: {{ $contactform->full_name }}

Subject: {{ $contactform->subject }}

Email: {{ $contactform->email }}

Mobile: {{ $contactform->mobile }}

Message: {{ $contactform->message }}

Date: {{ \Carbon\Carbon::parse($contactform->mdate)->format('d/m/Y') }}

Status: {{ $contactform->status == 1 ? 'Published' : 'Unpublished' }}

@else

Contact form not found.

@endif
Back to Contact Forms
@endsection