stats-card.blade.php 906 B

1234567891011121314151617181920
  1. @props(['href' => '#', 'color' => 'primary', 'icon', 'title', 'value', 'tag' => false])
  2. <div class="col-xxl-3 col-xl-4 col-md-6">
  3. <a class="card card-shadow" href="{{ $href }}">
  4. <div class="card-block bg-white">
  5. <button class="btn btn-floating btn-sm btn-{{ $color }}" type="button">
  6. <i class="icon {{ $icon }}"></i>
  7. </button>
  8. <span class="ml-15 font-weight-400">{{ $title }}</span>
  9. <div class="content-text text-center mb-0">
  10. <span class="font-size-40 font-weight-100">{{ $value }}</span>
  11. @if ($tag)
  12. <span class="badge badge-success badge-round up font-size-20 m-0" style="top:-20px">
  13. <i class="icon wb-triangle-up" aria-hidden="true"></i> {{ $tag }}
  14. </span>
  15. @endif
  16. </div>
  17. </div>
  18. </a>
  19. </div>