develop #28

Merged
amirghasempoor merged 51 commits from develop into main 2026-06-15 11:32:19 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 92d806497d - Show all commits

View File

@@ -13,7 +13,7 @@ class EncodePolyLineCommand extends Command
*
* @var string
*/
protected $signature = 'app:encode-poly-line-command';
protected $signature = 'polyline:encode';
/**
* The console command description.

View File

@@ -34,7 +34,7 @@ class UpdateRequest extends FormRequest
{
return [
function (Validator $validator) {
if (strtotime($this->violation->exit_time) < strtotime($this->enter_time)) {
if (strtotime($this->enter_time) < strtotime($this->violation->exit_time)) {
$validator->errors()->add(
'time',
'زمان پایان ماموریت باید بعد از زمان شروع ماموریت باشد.'