@extends('layouts.app') @section('styles') @endsection @section('content')
المستخدمين
@foreach ($clients as $client) @endforeach
الاسم البريد الإلكتروني رقم الهاتف تاريخ الميلاد الرصيد إجراء
{{ $client->first_name . ' ' . $client->last_name }} {{ $client->email }} {{ $client->phone }} {{ $client->birth_date }} {{ $client->wallet }} @if (auth()->user()->isAbleTo(['read_clients'])) @endif @if (auth()->user()->isAbleTo(['update_clients'])) @endif @if (auth()->user()->isAbleTo(['delete_clients'])) @endif
@endsection('content') @section('scripts') @endsection