@extends('layouts.app') @section('content') {{__("Clients")}} @isset($count) ({{$count}}) @endisset {{__("Contract number")}} {{__("Client")}} {{__("Cluster")}} {{__("Address")}} {{__("Seller")}} {{__("Status")}} @foreach($clients as $client) @php if($client->returned == 1) $pulse = 'alarm-pulse-red'; else $pulse = ''; if($client->expedited == 1) $marker = 'marker-gray'; else $marker = ''; if($client->accepted == 1) $marker = 'marker-green'; else $marker = ''; @endphp {{$client->alt_id}} {{$client->name.' '.$client->surname}} {{$client->cluster}} {{$client->street.' '.$client->home_no}} {{$client->seller_name.' '.$client->seller_surname}} {{ __($client->status) }} @isset($claim) @endisset @if($client->expedited != 1 && $client->accepted != 1) @endif @if($isSuperAdmin && !isset($claim)) @endif @endforeach
{{__("Are you sure you want to delete data?")}}
{{__("Are you sure you want to send this request?")}}
{{__("Are you sure you want to accept request?")}}
{{__("Are you sure you want to return request?")}}