@extends('layouts.master') @section('title',trans('users')) @section('header') @endsection @section('main')

{{trans('user list')}}

{{trans('create user')}}
@foreach($users as $user) @endforeach
{{trans('id')}} {{trans('name')}} {{trans('email')}} {{trans('gate count')}} {{trans('balance')}} {{trans('sum transaction gates')}} {{trans('created at')}}
#{{$user->id}} {{ucfirst($user->name)}} {{ucwords($user->email)}} {{$user->number_gate}} Gate {{$user->balance}} USDT {{$user->sum_transaction_gates}} USDT {{$user->created_at}}
@endsection @section('footer') @endsection