@extends('layout.index') @section('content')
用户列表
@foreach($users as $k=>$v) @endforeach
ID 用户名 手机号 邮箱 状态 操作
{{$v['id']}} {{$v['username']}} {{$v['phone']}} {{$v['email']}} {{showState($v['status'])}}     
{!!$users->appends($request)->render()!!}
@endsection @section('myjs') @endsection