@extends('layout.admin_layout')
@section('title', 'admin-dashboard')
@section('body')
@section('header', '
Manage Contact')
@section('badge')
Contact Us
@endsection
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
| No |
Name |
Email |
Phone |
Massage |
Action |
@foreach($data as $key=>$value)
|
{{$key+1}}
|
{{$value->contact_name}} @if($value->seen == 0) New@endif |
{{$value->contact_email}} |
{{$value->contact_no}} |
{{substr($value->contact_msg, 0, 30)}} |
|
@endforeach
@endsection
@push('scripts')
@endpush