@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' => __('User Care'),
])
@endsection
@section('content')
<div class="table-area">
<div class="table-wrapper">
<div class="table-header">
<h5 class="title">{{ __($page_title) }}</h5>
</div>
<div class="table-responsive">
<div class="table-area">
<div class="table-wrapper">
<div class="table-header">
<h5 class="title">{{ __("User Email Logs") }}</h5>
</div>
<div class="table-responsive">
<table class="custom-table">
<thead>
<tr>
<th></th>
<th>{{ __("User") }}</th>
<th>{{ __("Send") }}</th>
<th>{{ __("Mail Sender(Method)") }}</th>
<th>{{ __("Subject") }}</th>
<th>{{ __("Message") }}</th>
<th></th>
</tr>
</thead>
<tbody>
@forelse ($logs as $key => $item)
<tr>
<td>
<ul class="user-list">
<li><img src="{{ $item->user->userImage }}" alt="user"></li>
</ul>
</td>
<td>{{ $item->user->username ?? '' }}</td>
<td>{{ $item->created_at->format("Y-m-d H:i") }}</td>
<td>{{ $item->method ?? "SMTP" }}</td>
<td>{{ $item->subject ?? '' }}</td>
<td title="{{ strip_tags($item->message) }}">{{ Str::words(strip_tags($item->message), 5, '...') }}</td>
<td>
<a href="{{ setRoute('admin.users.details',$item->user->username) }}" class="btn btn--base"><i class="las la-info-circle"></i></a>
</td>
</tr>
@empty
@include('admin.components.alerts.empty',['colspan' => 7])
@endforelse
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
{{ get_paginate($logs) }}
</div>
@endsection
@push('script')
@endpush
Payment Accept
Our platform simplifies payment acceptance, making transaction management effortless. With secure processing and user-friendly tools, you can easily handle payments from credit cards, debit cards, and digital methods. Our intuitive interface is designed for efficiency, ensuring a seamless experience for both you and your customers. Manage your transactions with ease and confidence.