@extends('dashboard.layouts.master') @section('title') الادارة @stop @section('css') @endsection @section('page-header') @endsection @section('content') @include('dashboard.messages_alert')
@foreach ($users as $user) @endforeach
# {{ __('name') }} {{ __('email') }} {{ __('status') }} {{ __('edit') }} {{ __('created_at') }}
{{ $loop->iteration }} {{ $user->name }} {{ $user->email }}
{{ method_field('delete') }} {{ csrf_field() }}
تعديل {{ $user->created_at->diffForHumans() }}
@include('dashboard.admins.add')
@endsection @section('js') @endsection