love_php/resources/views/city_users.blade.php

35 lines
876 B
PHP
Raw Normal View History

2026-04-02 09:20:51 +08:00
@extends('layouts.app')
@section('content')
<table class="table">
<tr>
<th>id</th>
<th>昵称</th>
<th>城市</th>
<th>二维码</th>
</tr>
@foreach ($users as $user)
<tr>
<td>
<p>{{ $user->id }}</p>
</td>
<td>
<p> {{ $user->nickname }}</p>
</td>
<td>
<p> {{ $user->profileCourtship?$user->profileCourtship->city:'' }}</p>
</td>
<td>
<img src="{{$user->userDetailQrcode?$user->userDetailQrcode->qrcode_path:""}}" width="100px" data-action="zoom">
</td>
</tr>
@endforeach
</table>
<div class="pull-left">
{{$users->appends(['city_arr'=>implode(',',$city_arr)])->render()}}
</div>
@endsection