@extends('layouts.app') @section('content')

{{__("Clients")}} ({{$count}})

@csrf
@foreach($clients as $client) @if($client->withdrawal_date) @if(date('Y-m-d',strtotime($client->withdrawal_date)) == date('Y-m-d')) @else {{$pulse = ''}} @endif @endif @endforeach
{{__("ID")}} {{__("Client")}} {{__("Cluster")}} {{__("Address")}} {{__("Packet")}} {{__("Status")}} {{__("Assigned to fitter")}}
{{$client->fobos_id}} {{$client->name.' '.$client->surname}} {{$client->cluster}} {{$client->street.' '.$client->home_no}} {{$client->packet}} {{$client->status}} {{$client->fitter_name.' '.$client->fitter_surname}} @if($isSuperAdmin) @endif
@endsection