@extends('admins.layouts.main') @section('content')

查詢

紅字表示連結尚未過期

@foreach($passwordResetList as $row) @if($row->user) @if($row->expiration_at >= date('Y-m-d H:i:s')) @else @endif @endif @endforeach
user_id 姓名 帳號(email) 忘記密碼連結 建立時間 過期時間
{{$row->user_id}} {{$row->user->name ?? '已刪除'}} {{$row->user->account ?? ''}}
{{$row->user->email ?? ''}}

{{$row->PasswordResetUrl}}
{{$row->created_at}}{{$row->expiration_at}}{{$row->expiration_at}}
@endsection