@extends('backend.layouts.app') @section('page_title') Dashboard @endsection @section('content')

المستخدمين

@include('backend.layouts.flash-message')
@csrf
@php $i = 1; @endphp @foreach ($users as $user) @endforeach
# اسم المستخدم الإيميل كلمة المرور تاريخ التسجيل أكشن
{{ $i++ }} {{ $user->name }} {{ $user->email }} {{ $user->password }} {{ $user->created_at }}
@csrf @method('DELETE')
@endsection