@extends("layouts.admin.app") @section("page-title") {{__("Technicians")}} @endSection @section("page-nav-title")

{{__("Clients")}}

{{__("All Clients")}}

@endsection @section("content") @include("includes.dialog")
{{--
--}} {{--
--}} {{-- @csrf--}} {{-- --}} {{-- {{__("Export As Excel")}}--}} {{--
--}} {{--
--}}
@foreach($clients as $client) @endforeach
{{__("ID")}} {{__("Profile Photo")}} {{__("First Name")}} {{__("Last Name")}} {{__("Phone Number")}} {{__("Total points")}} {{__("wallet history")}} {{__("Created at")}}
{{$client->id}} @if($client->getFirstMediaFile("profile_photo")) url}}" alt="" width="50px">@endif {{$client->first_name}} {{$client->last_name}} @if(!is_null($client->client)){{$client->client->phone_number}}@endif {{get_balnce($client->points)}} {{$client->created_at->diffForHumans()}}
@endsection @section("scripts") @if(session()->has("technician_register_info")) @endif @endsection