@extends('layouts.app')
@section('content')
{{__("Clients")}} ({{__('Count').' '.$count}}) @if($penetration)({{__('Penetration').' '.number_format($penetration, 2)}}%) @endif
| {{__("ID")}} |
{{__("Client")}} |
{{__("Cluster")}} |
{{__("Address")}} |
{{__("Packet")}} |
{{__("Status")}} |
@if($isAdmin || $isLider)
{{__("Seller")}} |
@endif
|
@foreach($fobos as $client)
| {{$client->fobos_id}} |
{{$client->name.' '.$client->surname}} |
{{$client->cluster}} |
{{$client->street.' '.$client->home_no}} |
{{$client->packet}} |
{{$client->status}} |
@if($isAdmin || $isLider)
{{$client->seller_name.' '.$client->seller_surname}} |
@endif
@if($client->expedited != 1 && $client->accepted != 1 && $client->status_id == 1)
@endif
@if($isSuperAdmin)
@endif
|
@endforeach
@endsection