Merge pull request #58 from witelgroup/feature/ManageTelescopTime

create code for clear pass datat for telescope in concole.cernel and …
This commit is contained in:
Amir Ghasempoor
2025-10-01 09:32:20 +03:30
committed by GitHub
3 changed files with 13 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
namespace App\Console;
use App\Console\Commands\ManageDataTelescopeCommand;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
@@ -42,6 +43,11 @@ class Kernel extends ConsoleKernel
$schedule->command("db:backup")
->weekly()->at('03:00')->appendOutputTo(storage_path('logs/mariadb-backup.log'));
$schedule->command('telescope:prune --hours=48')
->dailyAt('04:00')
->appendOutputTo(storage_path('logs/telescope.log'));
}
/**

View File

@@ -254,7 +254,7 @@ class AccidentReceiptController extends Controller
{
DB::transaction(function () use ($request, $accident) {
$final_amount = $accident->driver_share_amount - ($accident->deposit_insurance_amount + $accident->deposit_daghi_amount);
$final_amount = $accident->driver_share_amount - ($request->deposit_insurance_amount + $request->deposit_daghi_amount);
throw_if($final_amount < 0, new ProhibitedAction('مبالغ داغی و بیمه از مبلغ کل بیشتر می باشد.'));

View File

@@ -141,5 +141,11 @@ return [
'path' => storage_path('logs/mariadb-backup.log'),
'level' => 'info',
],
'telescope' => [
'driver' => 'single',
'path' => storage_path('logs/telescope.log'),
'level' => 'info',
],
],
];