View file ProForum/Files/application/resources/views/admin/reports/notification_history.blade.php

File size: 4.72Kb
@extends('admin.layouts.app')
@section('panel')
<div class="row">
    <div class="col-lg-12">
        <div class="card b-radius--10 ">
            <div class="card-body p-0">
                <div class="table-responsive--sm table-responsive">
                    <table class="table table--light style--two">
                        <thead>
                            <tr>
                                <th>@lang('User')</th>
                                <th>@lang('Sent')</th>
                                <th>@lang('Sender')</th>
                                <th>@lang('Subject')</th>
                                <th>@lang('Action')</th>
                            </tr>
                        </thead>
                        <tbody>
                            @forelse($logs as $log)
                            <tr>
                                <td>
                                    @if($log->user)
                                    <a href="{{ route('admin.users.detail', $log->user_id) }}">{{ $log->user->fullname
                                        }}</a>
                                    @else
                                    <span class="fw-bold">@lang('System')</span>
                                    @endif
                                </td>
                                <td>
                                    {{ showDateTime($log->created_at) }}
                                </td>
                                <td>
                                    <span class="fw-bold">{{ __($log->sender) }}</span>
                                </td>
                                <td>{{ __($log->subject) }}</td>
                                <td>
                                    <button title="@lang('Details')" class="btn btn-sm btn--primary notifyDetail"
                                        data-type="{{ $log->notification_type }}" @if($log->notification_type ==
                                        'email') data-message="{{ route('admin.report.email.details',$log->id)}}" @else
                                        data-message="{{ $log->message }}" @endif data-sent_to="{{ $log->sent_to }}"
                                        target="_blank"><i class="las la-eye"></i></button>
                                </td>
                            </tr>
                            @empty
                            <tr>
                                <td class="text-muted text-center" colspan="100%">{{ __($emptyMessage) }}</td>
                            </tr>
                            @endforelse
                        </tbody>
                    </table><!-- table end -->
                </div>
            </div>
            @if($logs->hasPages())
            <div class="card-footer py-4">
                {{ paginateLinks($logs) }}
            </div>
            @endif
        </div><!-- card end -->
    </div>
</div>


<div class="modal fade" id="notifyDetailModal" tabindex="-1" aria-labelledby="notifyDetailModalLabel"
    aria-hidden="true">
    <div class="modal-dialog modal-lg modal-dialog-centered">
        <div class="modal-content">
            <div class="modal-header">
                <h5 class="modal-title" id="notifyDetailModalLabel">@lang('Notification Details')</h5>
                <button type="button" class="close" data-bs-dismiss="modal" aria-label="Close"><i
                        class="las la-times"></i></button>
            </div>
            <div class="modal-body">
                <h3 class="text-center mb-3">@lang('To'): <span class="sent_to"></span></h3>
                <div class="detail"></div>
            </div>
        </div>
    </div>
</div>
@endsection


@push('breadcrumb-plugins')
@if(@$user)
<a href="{{ route('admin.users.notification.single',$user->id) }}" class="btn btn--primary btn-sm"><i
        class="las la-paper-plane"></i> @lang('Send Notification')</a>
@else
<form action="" method="GET" class="form-inline float-sm-end">
    <div class="input-group">
        <input type="text" name="search" class="form-control bg--white" placeholder="@lang('Search Username')"
            value="{{ request()->search }}">
        <button class="btn btn--primary input-group-text" type="submit"><i class="fa fa-search"></i></button>
    </div>
</form>
@endif
@endpush

@push('script')
<script>
    $('.notifyDetail').on('click', function () {
        var message = $(this).data('message');
        var sent_to = $(this).data('sent_to');
        var modal = $('#notifyDetailModal');
        if ($(this).data('type') == 'email') {
            var message = `<iframe src="${message}" height="500" width="100%" title="Iframe Example"></iframe>`
        }
        $('.detail').html(message)
        $('.sent_to').text(sent_to)
        modal.modal('show');
    });
</script>
@endpush