@extends('layouts.main-layout') @section('main')
decor img

tra cứu
danh sách trúng thưởng

@csrf

Họ và tên không hợp lệ

  • Họ và tên
  • Mã số hợp đồng/ Mã số tài khoản thẻ tín dụng
  • CMND / CCCD
  • Số điện thoại
  • Giải thưởng
    @foreach($users as $user)
  • {{$user->username}}
  • {{\Illuminate\Support\Str::mask($user->contact_number, '*',-12,8)}}
  • {{\Illuminate\Support\Str::mask($user->national_id, '*', 0, (strlen($user->national_id) - 4))}}
  • {{\Illuminate\Support\Str::mask($user->phone, '*', 0, (strlen($user->phone) - 4))}}
  • {{$user->gift()->first()->name}}
  • @endforeach
@if(count($users))

Có {{count($users)}} kết quả cho "{{$filters}} "

@endif
    @foreach($users as $user)
  • Họ và tên

    {{$user->username}}

    Số điện thoại

    {{\Illuminate\Support\Str::mask($user->phone, '*',-12, 8)}}

    CMND / CCCD

    {{\Illuminate\Support\Str::mask($user->national_id, '*', 0, (strlen($user->national_id) - 4))}}

    Mã số hợp đồng/ Mã số tài khoản thẻ tín dụng

    {{\Illuminate\Support\Str::mask($user->contact_number, '*', 0, (strlen($user->contact_number) - 4))}}

    Giải thưởng

    {{$user->gift()->first()->name}}

  • @endforeach
@if(count($users) == 0 && !empty($filters))

Rất tiếc, chúng tôi không tìm thấy kết quả nào cho "{{$filters}}"

@endif
@endsection @section('script') @endsection