@extends('admin.layout.master')
@section('title', 'Contact Enquiry')
@section('content')
Unable to change status. Please try later.
| # |
First Name |
Last Name |
Email |
Created At |
Actions |
@forelse ($data as $key=>$value)
| {{ $key + 1 }}
|
{{ $value['firstname'] }} |
{{ $value['lastname'] }} |
{{ $value['email'] }} |
{{ date('M d, Y', strtotime($value['created_at'])) }}
|
|
@empty
| No record found... |
@endforelse
@endsection
@push('js')
@endpush