staff members,senderid, documents,bug fixes, etc
This commit is contained in:
@@ -11,8 +11,7 @@
|
||||
<ol class="breadcrumb">
|
||||
<li><a href="{!! url('dashboard') !!}">Dashboard</a></li>
|
||||
<li><a href="{!! url('clients') !!}">Clients</a></li>
|
||||
<li><a href="{!! url('clients', $showclient->id) !!}">{{ $showclient->name }}</a></li>
|
||||
<li class="active">Full Details</li>
|
||||
<li class="active">{{ $showclient->name }} (Full Details)</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
@@ -21,7 +20,7 @@
|
||||
<div class="col-md-12 col-sm-12 col-xs-12">
|
||||
<div class="x_panel">
|
||||
<div class="x_title">
|
||||
Update Client Details
|
||||
Client Details
|
||||
@include('commons.notifications')
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
@@ -35,6 +34,16 @@
|
||||
<th>Name</th>
|
||||
<td>{{ $showclient->name }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<td>
|
||||
{{ $showclient->country }}
|
||||
@if($showclient->country_flag_info !== null)
|
||||
|
||||
<img class="" src="{{ url($showclient->country_flag_info->url) }}" alt="Generic Client Icon" title="Country Flag" height="20px">
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Account Manager</th>
|
||||
<td>{{ $showclient->auth_user_info->name }}</td>
|
||||
@@ -148,6 +157,16 @@
|
||||
</table>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<h4>Services </h4>
|
||||
<div class="bg-info" style="padding: 5px;">
|
||||
@if($show_services)
|
||||
<ul>
|
||||
@foreach($show_services as $service)
|
||||
<li>{{ $service }}</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
</div>
|
||||
<h4>Finance Details</h4>
|
||||
<table class="table">
|
||||
<tr>
|
||||
|
||||
Reference in New Issue
Block a user