@extends('layout.index') @section('content')
用户列表
@foreach($users as $k=>$v) @if($v['sex'] == 1) @elseif($v['sex'] == 2) @endif @endforeach
ID 用户名 性别 手机号 邮箱 生日 状态 操作
{{$v['id']}} {{$v['name']}}{{$v['phone']}} {{$v['email']}} {{$v['birth']}} {{showState($v['status'])}}        
{!!$users->appends($request)->render()!!}
@endsection @section('myjs') @endsection