@extends('layouts.app') @section('title', 'All Users') @section('content')

All Users

@if(session('success'))
{{ session('success') }}
@endif @forelse($users as $user) {{-- الحالة --}} {{-- الأكشنز --}} @empty @endforelse
# Name Email Posts Count Status Actions
{{ $user->id }} {{ $user->name }} {{ $user->email }} {{ $user->posts_count }} @if($user->is_banned) Banned @else Active @endif View Profile @if($user->is_banned)
@csrf
@else
@csrf
@endif
No users found.
@endsection