@extends('admin.layouts.master') @section('contact', 'active') @section('title') {{ $data['title'] ?? '' }} @endsection @section('content')

Contact

Manage Contact

{{-- --}} {{-- --}} @if (isset($data['rows']) && count($data['rows']) > 0) @foreach ($data['rows'] as $key => $row) {{-- --}} @endforeach @endif
SL Name Email Phone Reason for InquiryStatusMessage Date Action
SL Name Email Phone Reason for InquiryStatusMessage Date Action
{{ $key + 1 }} {{ $row->name }} {{ $row->email }} {{ $row->phone }} {{ str($row->reason)->limit(20) }} @if ($row->status == 1) Active @else Inactive @endif {{ str($row->message)->limit(20) }} {{ date('d M Y', strtotime($row->created_at)) }} {{-- @if (Auth::user()->can('admin.contact.view')) View @endif --}} {{-- @if (Auth::user()->can('admin.contact.edit')) Edit @endif --}} {{-- @if (Auth::user()->can('admin.contact.delete')) Delete @endif --}}
{{-- edit modal --}} @endsection @push('script') @endpush