Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/mcoil.corals.io/resources/views/admin/GDPR/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/mcoil.corals.io/resources/views/admin/GDPR/consent-logs.blade.php
<!-- =============================================== -->
@extends('layouts.admin.app')

@section('content')
    <!-- Main content -->
    <section class="content"> 
    	 @include('layouts.errors-and-messages')
        <div class="box">
            
             <div class="box-body">

            	<h2>Consent Logs</h2>
                <table class="table">
                    <thead>
                        <tr>
                            <td class="col-md-3">IP address</td> 
                            <td class="col-md-3">Visited Date</td> 
                            <td class="col-md-4">Consent Details</td>
                        </tr>
                    </thead>
                    <tbody>
                    	@foreach ($consentLogs as $consentLog)
	                        <tr>
                                <td>{{ $consentLog->ip_addr }}</td>
	                            <td>{{ $consentLog->visited_date }}</td>
	                            <td>
	                            	@if($consentLog->viewed_cookie)
	                            		<b>Viewed cookie:</b> {{ $consentLog->viewed_cookie }}<br>
                            		@endif

	                            	@if($consentLog->necessary)
	                            		<b>Necessary:</b>{{ $consentLog->necessary }}<br>
                            		@endif

	                            	@if($consentLog->marketing)
	                            		<b>Marketing:</b> {{ $consentLog->marketing }}<br>
	                            	@endif

	                            	@if($consentLog->analytics)
	                            		<b>Analytics:</b> {{ $consentLog->analytics }}<br>
                            		@endif

	                            	@if($consentLog->preferences)
	                            		<b>Preferences:</b> {{ $consentLog->preferences }}<br>
	                            	@endif

	                            	@if($consentLog->unclassified)
	                            		<b>Unclassified:</b> {{ $consentLog->unclassified }}<br>
                            		@endif
	                            </td>
	                        </tr>
	                    @endforeach 
                    </tbody>
                </table> 
            </div>
        </div>
    </section>
	<!-- /.content -->
@endsection

Spamworldpro Mini