cuando sea diciembre y le damos mes pasado me va a mostrar los del ano pasado

This commit is contained in:
Felipe
2025-01-02 09:09:14 -05:00
parent 2970751f82
commit 31963b64d3
+1 -1
View File
@@ -22,9 +22,9 @@ class ShowTop extends Component
{
$this->configuracion = Configuracione::orderby('id', 'desc')->first();
$currentYear = date('Y');
$monthYear = date('m-Y', strtotime('last month'));
$month = $this->showLastMonth ? date('m', strtotime('last month')) : date('m');
$currentYear = $this->showLastMonth && $month == 12 ? date('Y', strtotime('last year')) : date('Y');
$consulta_ventas = User::with(['historiales_venta' => function ($query) use ($month, $currentYear) {
$query->whereMonth('fecha_inicio', $month)