35 lines
876 B
PHP
35 lines
876 B
PHP
@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
|