@extends('users::user-profile') @section('inside')
Üyeler
@foreach($users as $k => $user) @endforeach
# Adı E-Posta Adresi Sipariş Sayısı Kayıt Tarihi
{{$user->id}} {{substr($user->name,0,3)}}*****{{substr($user->name,-3)}} {{substr($user->email,0,3)}}*****{{substr($user->email,-6)}} {{$user->orders->count()}} {{date('d-m-Y H:i',strtotime($user->created_at))}}
{{$users->links()}}
@endsection