progress indicators, bug fixes, after a while
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
<div class="title_left">
|
||||
<ol class="breadcrumb">
|
||||
<li><a href="{!! url('dashboard') !!}">Dashboard</a></li>
|
||||
<li class="active">Office Locations</li>
|
||||
<li class="active">Branch Offices</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
@@ -49,9 +49,9 @@
|
||||
<div class="col-md-12 col-sm-12 col-xs-12">
|
||||
<div class="x_panel">
|
||||
<div class="x_title">
|
||||
<h2> Office Locations</h2>
|
||||
<h2> Branch Offices</h2>
|
||||
<div class="pull-right">
|
||||
<a class="btn btn-primary btn-sm" href="{!! url('officelocations/create') !!}"><i class="fa fa-plus-circle"></i> New Office Location</a>
|
||||
<a class="btn btn-primary btn-sm" href="{!! url('officelocations/create') !!}"><i class="fa fa-plus-circle"></i> New Branch Office</a>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
@@ -63,22 +63,32 @@
|
||||
<div class="col-md-4 col-sm-4 col-xs-12 profile_details">
|
||||
<div class="well profile_view">
|
||||
<div class="col-sm-12">
|
||||
<h4 class="brief"><i>{{ $row->country }}</i></h4>
|
||||
<div class="left col-xs-7">
|
||||
<h4>{{ $row->country_manager_info->name }}</h4>
|
||||
<p><strong>Block Number </strong>: {{ $row->hose_number or '' }} {{ $row->block_number or '' }}</p>
|
||||
<p><strong>Street Name </strong>: {{ $row->street_name or '' }}</p>
|
||||
<!-- <h4 class="brief"><i>{{ $row->country }}</i></h4> -->
|
||||
<div class="leftd col-xs-12">
|
||||
<div class="text-centers">
|
||||
<img src="<?php echo $row->flag_url; ?>" alt="" class="img-circles img-responsives" width="60" height="30">
|
||||
</div>
|
||||
<h4>Country : {{ $row->country }}</h4>
|
||||
<h4>Manager : {{ $row->country_manager_info->name }}</h4>
|
||||
<p><strong>Physical Address </strong>: {{ $row->physical_address or '' }} {{ $row->block_number or '' }}</p>
|
||||
<p><strong>Postal Address </strong>: {{ $row->postal_address or '' }}</p>
|
||||
|
||||
<p><strong>City/Town </strong>: {{ $row->city_town or '' }}</p>
|
||||
<p><strong>Country </strong>: {{ $row->country or '' }}</p>
|
||||
<ul class="list-unstyled">
|
||||
<li><i class="fa fa-buildings"></i>Country Code: {{ $row->country_code or '' }} </li>
|
||||
<!-- <li><i class="fa fa-buildings"></i>Country Code: </li> -->
|
||||
<li><i class="fa fa-phone"></i> Phone #: {{ $row->office_phone }} </li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="right col-xs-5 text-center">
|
||||
<!-- <div class="right col-xs-5 text-center">
|
||||
<img src="<?php echo $row->flag_url; ?>" alt="" class="img-circles img-responsives" width="100" height="60">
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
<div class="col-xs-12 bottom text-center bg-danger">
|
||||
<!-- url('clients/'. $showclient->id . '/edit') -->
|
||||
<a href="{{ url('officelocations/'. $row->id .'/edit') }}" class="btn btn-link"><i class="fa fa-edit"></i> Edit</a>
|
||||
<a href="{{ url('officelocations/showfiles', $row->id) }}" class="btn btn-link"><i class="fa fa-file"></i> Documents</a>
|
||||
</div>
|
||||
<div class="col-xs-12 bottom text-center bg-danger"></div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
Reference in New Issue
Block a user