@extends ('../welcome') @section ('content')
@if (Auth::user()->isAbleTo('clients-create')) @endif
@foreach ($clients as $client) @endforeach
ID Name Email Phone Number Source Created At Action
{{$client->id}} {{$client->name}} {{$client->email}} @foreach($client->phone_numbers as $phone_number)
  • {{$phone_number->phone}}
  • @endforeach
    {{$client->came_from}} {{$client->created_at->setTimezone('Africa/Cairo')}} @if(auth()->user()->isAbleTo('clients-update')) @endif @if(auth()->user()->isAbleTo('clients-delete')) @endif
    @endsection