14 lines
465 B
PHP
14 lines
465 B
PHP
<?php
|
|
|
|
use Carbon\Carbon;
|
|
|
|
require_once __DIR__ . "/../vendor/autoload.php";
|
|
$app = include_once __DIR__ . '/../bootstrap/app.php';
|
|
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
|
|
$kernel->bootstrap();
|
|
|
|
// Cập nhật lại data cho tới tháng hiện tại
|
|
$currentMonth = Carbon::now()->month;
|
|
$tmpClass = $app->make('Modules\Admin\app\Http\Controllers\TicketController');
|
|
$tmpClass->updateOldData($currentMonth, 2025); // Params: month, year
|