myvideogamelist.com/resources/views/partials/widgets/mixed/_widget-2.blade.php
Jimmy Brancaccio b39ecf1638 Initial Commit
The initial public commit of MVGL website code.
2024-01-14 13:51:43 -06:00

79 lines
3.2 KiB
PHP

@php
$chartColor = $chartColor ?? 'primary';
$chartHeight = $chartHeight ?? '175px';
@endphp
<!--begin::Mixed Widget 2-->
<div class="card {{ $class }}">
<!--begin::Header-->
<div class="card-header border-0 bg-{{ $chartColor }} py-5">
<h3 class="card-title fw-bolder text-white">Sales Statistics</h3>
<div class="card-toolbar">
<!--begin::Menu-->
<button type="button" class="btn btn-sm btn-icon btn-color-white btn-active-white btn-active-color-{{ $color ?? '' }} border-0 me-n3" data-kt-menu-trigger="click" data-kt-menu-placement="bottom-end">
{!! theme()->getSvgIcon("icons/duotune/general/gen024.svg", "svg-icon-2") !!}
</button>
{{ theme()->getView('partials/menus/_menu-3') }}
<!--end::Menu-->
</div>
</div>
<!--end::Header-->
<!--begin::Body-->
<div class="card-body p-0">
<!--begin::Chart-->
<div class="mixed-widget-2-chart card-rounded-bottom bg-{{ $chartColor }}" data-kt-color="{{ $chartColor }}" data-kt-chart-url="{{ route('profits') }}" style="height: {{ $chartHeight }}"></div>
<!--end::Chart-->
<!--begin::Stats-->
<div class="card-p mt-n20 position-relative">
<!--begin::Row-->
<div class="row g-0">
<!--begin::Col-->
<div class="col bg-light-warning px-6 py-8 rounded-2 me-7 mb-7">
{!! theme()->getSvgIcon("icons/duotune/general/gen032.svg", "svg-icon-3x svg-icon-warning d-block my-2") !!}
<a href="#" class="text-warning fw-bold fs-6">
Weekly Sales
</a>
</div>
<!--end::Col-->
<!--begin::Col-->
<div class="col bg-light-primary px-6 py-8 rounded-2 mb-7">
{!! theme()->getSvgIcon("icons/duotune/finance/fin006.svg", "svg-icon-3x svg-icon-primary d-block my-2") !!}
<a href="#" class="text-primary fw-bold fs-6">
New Projects
</a>
</div>
<!--end::Col-->
</div>
<!--end::Row-->
<!--begin::Row-->
<div class="row g-0">
<!--begin::Col-->
<div class="col bg-light-danger px-6 py-8 rounded-2 me-7">
{!! theme()->getSvgIcon("icons/duotune/abstract/abs027.svg", "svg-icon-3x svg-icon-danger d-block my-2") !!}
<a href="#" class="text-danger fw-bold fs-6 mt-2">
Item Orders
</a>
</div>
<!--end::Col-->
<!--begin::Col-->
<div class="col bg-light-success px-6 py-8 rounded-2">
{!! theme()->getSvgIcon("icons/duotune/communication/com010.svg", "svg-icon-3x svg-icon-success d-block my-2") !!}
<a href="#" class="text-success fw-bold fs-6 mt-2">
Bug Reports
</a>
</div>
<!--end::Col-->
</div>
<!--end::Row-->
</div>
<!--end::Stats-->
</div>
<!--end::Body-->
</div>
<!--end::Mixed Widget 2-->