delay statuses module updated

This commit is contained in:
Thekindbull 2025-07-29 10:42:53 +08:00
parent d8fea048d1
commit b400487e0c
2 changed files with 11 additions and 11 deletions

View File

@ -3,9 +3,9 @@
class ContractStatus class ContractStatus
{ {
const NEW = 'NEW'; const NEW = 'NEW';
const TREATY = 'TREATY'; const TREATY = 'TREATY'; //переговоры
const RESERVATION = 'RESERVATION'; const RESERVATION = 'RESERVATION'; //бронь
const SUCCESS = "SUSSCESS"; const SUCCESS = "SUCCESS";
const DECLINE = "DECLINE"; const DECLINE = "DECLINE";
} }

View File

@ -5,7 +5,7 @@
use Illuminate\Support\Facades\Schema; use Illuminate\Support\Facades\Schema;
return new class extends Migration return new class extends Migration
{ {
/** /**
* Run the migrations. * Run the migrations.
*/ */
@ -32,4 +32,4 @@ public function down(): void
{ {
Schema::dropIfExists('client_contract'); Schema::dropIfExists('client_contract');
} }
}; };