????
Current Path : /home/thenclexdoctor.com/public_html/app/Models/Observers/ |
Current File : /home/thenclexdoctor.com/public_html/app/Models/Observers/SaleNumberObserver.php |
<?php namespace App\Models\Observers; use App\Models\Sale; class SaleNumberObserver { public function saving(Sale $model) { // Check if the number is below zero if ($model->tax < 0) { $model->tax = 0; } if ($model->commission < 0) { $model->commission = 0; } if ($model->discount < 0) { $model->discount = 0; } if ($model->total_amount < 0) { $model->total_amount = 0; } } }
Sorry, this page is not available...