MIF_E31210164/resources/views/pages/dashboard-dokter.blade.php

76 lines
2.9 KiB
PHP

@extends('layouts.dashboard')
@section('title','dashboard | Dokter')
@section('content')
<div class="container-fluid">
<!-- Page Heading -->
<div class="d-sm-flex align-items-center justify-content-between mb-4">
<h1 class="h3 mb-0 text-gray-800">Dashboard</h1>
</div>
<!-- Content Row -->
<div class="row">
<!-- Earnings (Monthly) Card Example -->
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-primary shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="text-xs font-weight-bold text-primary text-uppercase mb-1">
Pasien Belum Diperiksa</div>
<div class="h5 mb-0 font-weight-bold text-gray-800">{{ $pemeriksaan }}</div>
</div>
<div class="col-auto">
<i class="fas fa-user fa-2x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Earnings (Monthly) Card Example -->
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-success shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="text-xs font-weight-bold text-success text-uppercase mb-1">
Pasien Selesai Diperiksa</div>
<div class="h5 mb-0 font-weight-bold text-gray-800">{{ $pemeriksaandone }}</div>
</div>
<div class="col-auto">
<i class="fas fa-user fa-2x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Earnings (Monthly) Card Example
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-info shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="text-xs font-weight-bold text-info text-uppercase mb-1">Total Resep Obat
</div>
<div class="h5 mb-0 font-weight-bold text-gray-800">{{ $resep }}</div>
</div>
<div class="col-auto">
<i class="fas fa-pills fa-2x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div> -->
</div>
@endsection