Google Counter Users

@if(count($data['users']) > 0)
@foreach($data['users'] as $user) @endforeach
ID Full Name Company Email Phone Country Signature Reinstatement Status Created Actions
{{ $user->id }} {{ $user->full_name }} @if($user->title)
{{ $user->title }} @endif
{{ $user->company }} {{ $user->contact_email }} {{ $user->phone_number }} {{ $user->country ?? 'N/A' }} {{ $user->signature ?? 'N/A' }} @if($user->reinstatement_reason) @switch($user->reinstatement_reason) @case('I am the owner of the content.') Owner @break @case('I am not the owner, but I am authorized to use the content.') Authorised @break @case('The complainant does not have the right to submit this request.') No Right @break @case('The way I used the content is fair use, or covered by an exception or limitation.') Fair Use @break @case('I never used the content.') Never Used @break @case('Other') Other @break @default {{ $user->reinstatement_reason }} @endswitch @else N/A @endif {{ $user->active ? 'Active' : 'Inactive' }} {{ $user->created_at->format('Y-m-d H:i') }}
@else

No Google Counter Users found.

Add First User
@endif