|
@@ -1,9 +1,42 @@
|
|
|
@extends ('layouts.template')
|
|
|
|
|
|
@section('content')
|
|
|
-<div class="starter-template">
|
|
|
- <h1>HOME</h1>
|
|
|
- Hello, <b>{{ $pro->cell_number }}</b>
|
|
|
-</div>
|
|
|
-
|
|
|
+ <div class="mt-3">
|
|
|
+ <div class="container m-0 mt-4">
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-md-4">
|
|
|
+ <div class="card">
|
|
|
+ <div class="card-header">
|
|
|
+ <strong>
|
|
|
+ <i class="fas fa-chart-bar"></i>
|
|
|
+ Key Numbers
|
|
|
+ </strong>
|
|
|
+ </div>
|
|
|
+ <div class="card-body p-0">
|
|
|
+ <table class="table table-condensed">
|
|
|
+ <tbody>
|
|
|
+ <tr>
|
|
|
+ <th>0</th>
|
|
|
+ <th>Total patients</th>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>0</th>
|
|
|
+ <th>Patients I have not seen yet</th>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>0</th>
|
|
|
+ <th>Pending bills to sign</th>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>0</th>
|
|
|
+ <th>Pending notes to sign</th>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
@endsection
|