staff members,senderid, documents,bug fixes, etc

This commit is contained in:
Kwesi Banson
2023-07-27 01:33:36 +00:00
parent f2279bd13a
commit ea6d83e5d9
154 changed files with 21442 additions and 246 deletions

View File

@@ -0,0 +1,107 @@
@extends('layouts.master')
@section('page_title')
@if(isset($page_title))
{{ $page_title }}
@endif
@endsection
@section('css')
@endsection
@section('content')
<div class="">
<div class="page-title">
<div class="title_left">
<div class="title_left">
<ol class="breadcrumb">
<li><a href="{!! url('dashboard') !!}">Dashboard</a></li>
<li class="active">Office Locations</li>
</ol>
</div>
</div>
<div class="title_right">
<div class="row">
<form method="GET" action="{!! url('senderids') !!}">
<div class="col-md-5 col-sm-5 col-xs-12 form-group">
<div style="margin-top:1px; margin-right:-90px;" class="top_search">
</div>
</div>
<div class="col-md-5 col-sm-5 col-xs-12 form-group pull-right top_search" style="margin-top: -2px;">
<div class="input-group">
<input type="text" name="keyword" class="form-control" id="keywordField" placeholder="Keyword here...">
<span class="input-group-btn">
<button type="submit" class="btn btn-primary" style="color: #fff;" type="button">Go!</button>
</span>
</div>
</div>
</form>
</div>
<div class="row">
<div class="col-sm-12">
<div class="pull-right"></div>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
<div class="row">
@include('commons.notifications')
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="x_panel">
<div class="x_title">
<h2> Office Locations</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>
</div>
<div class="clearfix"></div>
</div>
<div class="x_content">
<div id="" class="row">
@if($offices_arr->isEmpty() == false)
@foreach($offices_arr as $row)
<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>
<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-phone"></i> Phone #: {{ $row->office_phone }} </li>
</ul>
</div>
<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 class="col-xs-12 bottom text-center bg-danger"></div>
</div>
</div>
@endforeach
@else
<div class="col-md-12">
<p>No Records</p>
</div>
@endif
</div>
</div>
</div>
</div>
</div>
</div>
@endsection
@section('javascript')
<script type="text/javascript">
$(document).ready(function(){
});
</script>
@endsection