@extends('layouts/contentNavbarLayout') @section('title', 'Users') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('page-script') @endsection @section('content')

کاربران / لیست

کاربران
@foreach($users->items() as $user) @endforeach
# نام کاربری داخل سیستم نام تلگرامی نام خانوادگی تلگرامی ثبت نام شده در ویرایش شده در عملیات
{{ $user->id }} {{ $user->email }} {{ $user->first_name }} {{ $user->last_name }} {{ $user->created_at }} {{ $user->updated_at }}
@endsection