@extends('admin.layout.master') @section('css') @endsection @section('content') {{ awtTrans('التاريخ') }} {{ awtTrans('الاسم') }} {{ awtTrans('البريد الالكتروني') }} {{ awtTrans('رقم الجوال') }} {{ awtTrans('الحالة') }} {{ awtTrans('التحكم') }} @foreach ($admins as $admin) @if ($admin->id !=1) @else * @endif {{ $admin->created_at->format('d/m/Y') }} {{ $admin->name }} {{ $admin->email }} {{ $admin->phone }} @if ($admin->blocked) {{ awtTrans('محظور') }} @else {{ awtTrans('نشط') }} @endif @if($admin->id!=1) @endif @endforeach {{-- #table --}} @endsection @section('js') {{-- delete all script --}} @include('admin.shared.deleteAll') {{-- delete all script --}} {{-- delete one user script --}} @include('admin.shared.deleteOne') {{-- delete one user script --}} @endsection