@extends('layouts.app') @section('content')
| Client Name | Company Name | Job Type | Contact Number | |||
|---|---|---|---|---|---|---|
| {{ $client->user->getFullName() }} | {{ $client->organisation->company->name ?? 'N/A' }} | {{ $client->interpreterJobs->isNotEmpty() ? 'Interpreter' : 'Translation' }} | {{ $client->user->email }} | {{ $client->contact_number }} | {{ Form::open([ 'route' => [ 'clients.new-requests.update', $client->id ], 'method' => 'PUT', 'class' => 'd-inline-block' ]) }} {{ Form::close() }} {{ Form::open([ 'route' => [ 'clients.rejected.update', $client->id ], 'method' => 'PUT', 'class' => 'd-inline-block' ]) }} {{ Form::close() }} @if (!$client->organisation) View @else View @endif | |
| There are no new requests | ||||||