@extends('master') @section('title') View Contact Form @endsection @section('content')
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' }}
Contact form not found.
@endif