|
@@ -0,0 +1,68 @@
|
|
|
+@extends ('layouts/template')
|
|
|
+
|
|
|
+@section('content')
|
|
|
+ <div class="p-3 mcp-theme-1">
|
|
|
+ <div class="card">
|
|
|
+ <div class="card-header p-3 d-flex align-items-center">
|
|
|
+ <strong class="mr-4">
|
|
|
+ <i class="fas fa-chart-bar"></i>
|
|
|
+ RPM Matrix
|
|
|
+ </strong>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="card-body p-0">
|
|
|
+ <table class="table table-sm table-condensed p-0 m-0" style="">
|
|
|
+ <thead class="bg-light">
|
|
|
+ <tr>
|
|
|
+ <th>name</th>
|
|
|
+ <th>dob</th>
|
|
|
+ <th>mcp</th>
|
|
|
+ <th>most_recent_cellular_bp_battery_voltage</th>
|
|
|
+ <th>most_recent_cellular_bp_dbp_mm_hg</th>
|
|
|
+ <th>most_recent_cellular_bp_measurement_at</th>
|
|
|
+ <th>most_recent_cellular_bp_measurement_id</th>
|
|
|
+ <th>most_recent_cellular_bp_sbp_mm_hg</th>
|
|
|
+ <th>most_recent_cellular_bp_signal_strength</th>
|
|
|
+ <th>most_recent_cellular_bp_value_irregular</th>
|
|
|
+ <th>most_recent_cellular_bp_value_pulse</th>
|
|
|
+ <th>most_recent_cellular_measurement_at</th>
|
|
|
+ <th>most_recent_cellular_measurement_id</th>
|
|
|
+ <th>most_recent_cellular_weight_battery_voltage</th>
|
|
|
+ <th>most_recent_cellular_weight_measurement_at</th>
|
|
|
+ <th>most_recent_cellular_weight_measurement_id</th>
|
|
|
+ <th>most_recent_cellular_weight_signal_strength</th>
|
|
|
+ <th>most_recent_cellular_weight_value</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ @foreach($clients as $client)
|
|
|
+ <tr>
|
|
|
+ <td>{{ $client->name }}</td>
|
|
|
+ <td>{{ $client->dob }}</td>
|
|
|
+ <td>{{ $client->mcp }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_bp_battery_voltage }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_bp_dbp_mm_hg }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_bp_measurement_at }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_bp_measurement_id }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_bp_sbp_mm_hg }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_bp_signal_strengtd }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_bp_value_irregular }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_bp_value_pulse }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_measurement_at }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_measurement_id }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_weight_battery_voltage }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_weight_measurement_at }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_weight_measurement_id }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_weight_signal_strengtd }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_weight_value }}</td>
|
|
|
+ </tr>
|
|
|
+ @endforeach
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ <div>
|
|
|
+ {{$clients->links()}}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+@endsection
|