@extends('layouts.app') @section('title', 'Consent Report') @section('page-title', 'Consent Acceptance Report') @section('breadcrumb', 'Checkout Consents / Report') @section('content')

All accepted consent records from checkout

← Back to Consents
@if($records->count())
@foreach($records as $record) @endforeach
Consent User Order Accepted At
{{ $record->consent?->title ?? '—' }}

{{ $record->user?->name ?? '—' }}

{{ $record->user?->email }}

@if($record->order) {{ $record->order->order_number }} @else @endif {{ $record->accepted_at?->format('M d, Y H:i') ?? '—' }}
{{ $records->links() }}
@else @endif
@endsection