mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
The official image from streamline does not currently work for the arm64 platform. As a temporary measure, the source code and docker build scripts have been lifted from the official images and are used to build locally. Some additional modifications are made to reduce overall image size, these are documented in docker/README.md
114 lines
4.1 KiB
PHP
Executable File
114 lines
4.1 KiB
PHP
Executable File
@extends('layouts.main')
|
|
|
|
@push('styles')
|
|
<link href="{{ asset('elite/bower_components/bootstrap-datepicker/bootstrap-datepicker.min.css') }}" rel="stylesheet" type="text/css" />
|
|
@endpush
|
|
|
|
@section('content')
|
|
<div class="row bg-title">
|
|
<div class="col-lg-3 col-md-4 col-sm-4 col-xs-12">
|
|
<h4 class="page-title">View SMS Reports</h4>
|
|
</div>
|
|
<div class="col-lg-9 col-sm-8 col-md-8 col-xs-12">
|
|
<ol class="breadcrumb">
|
|
<li><a href="{{ route('home') }}">Dashboard</a></li>
|
|
<li class="active">SMS</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="white-box">
|
|
{{ Form::open(['route' => 'sms.view_sms_reports' , 'data-toggle' => 'validator']) }}
|
|
<div class="row">
|
|
<div class="col-md-1"></div>
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
{{ Form::label('start_date', 'Date From') }}
|
|
{{ Form::text('start_date','',['class' => 'form-control compulsory', 'required','readonly','id'=>'start_date']) }}
|
|
</div>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
{{ Form::label('end_date', 'Date To') }}
|
|
{{ Form::text('end_date','',['class' => 'form-control compulsory', 'required','readonly','id'=>'end_date']) }}
|
|
</div>
|
|
</div>
|
|
<div class="col-md-2">
|
|
<br>
|
|
{{ Form::button('Search',['type'=>'submit','class'=>'btn btn-rounded btn-success waves-effect waves-light m-r-10']) }}
|
|
</div>
|
|
</div>
|
|
{{ Form::close() }}
|
|
</div>
|
|
|
|
<div class="white-box">
|
|
<h4><span class="label label-info">{{ $search_text }}</span></h4>
|
|
|
|
<br>
|
|
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<table class="table table-bordered">
|
|
<tr>
|
|
<td><b>To all patients</b></td>
|
|
<td>{{ $sms_sent_to_all_patients }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>To all staff</b></td>
|
|
<td>{{ $sms_sent_to_all_users }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>Custom Messages</b></td>
|
|
<td>{{ $sms_sent_to_custom }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>Alerts from investigations</b></td>
|
|
<td>{{ $sms_sent_for_investigation_results }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<table class="table table-bordered">
|
|
<tr>
|
|
<td><b>To patient categories</b></td>
|
|
<td>{{ $sms_sent_to_patient_categories }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>According to staff positions</b></td>
|
|
<td>{{ $sms_sent_to_user_positions }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>Alerts from patient appointments</b></td>
|
|
<td>{{ $sms_sent_for_patient_appointments }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>Total Sent</b></td>
|
|
<td>{{ $total_sms_sent }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@push('scripts')
|
|
<script src="{{ asset('elite/js/validator.js') }}"></script>
|
|
<script src="{{ asset('elite/bower_components/bootstrap-datepicker/bootstrap-datepicker.min.js') }}"></script>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$('#start_date').datepicker({
|
|
autoclose: true,
|
|
todayHighlight: true,
|
|
format: 'dd-mm-yyyy'
|
|
});
|
|
|
|
$('#end_date').datepicker({
|
|
autoclose: true,
|
|
todayHighlight: true,
|
|
format: 'dd-mm-yyyy'
|
|
});
|
|
});
|
|
</script>
|
|
@endpush
|