@extends('admin.layouts.master') @push('css') @endpush @section('page-title') @include('admin.components.page-title', ['title' => __($page_title)]) @endsection @section('breadcrumb') @include('admin.components.breadcrumb', [ 'breadcrumbs' => [ [ 'name' => __('Dashboard'), 'url' => setRoute('admin.dashboard'), ], ], 'active' => __('Contact Messages'), ]) @endsection @section('content')
| Name | Message | Reply | Created At | |||
|---|---|---|---|---|---|---|
| {{ $key + $contact_requests->firstItem() }} | {{ $item->name }} | {{ $item->email }} | {{ substr($item->message,0,40)."..." }} | @if ($item->reply == true) {{ __("Replyed") }} @else {{ __("Not Replyed") }} @endif | {{ $item->created_at->format("d-m-Y H:i:s") }} | @include('admin.components.link.custom',[ 'href' => "#send-reply", 'class' => "btn btn--base reply-button modal-btn", 'icon' => "las la-reply-all", 'permission' => "admin.contact.messages.reply", ]) @include('admin.components.link.custom',[ 'href' => "#message-view", 'class' => "btn btn--base view-button modal-btn", 'icon' => "las la-info-circle", ]) @include('admin.components.link.delete-default',[ 'href' => "javascript:void(0)", 'class' => "delete-modal-button", ]) |