Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
TblQuotationsDeleted
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace App\Models;
4
5use Illuminate\Database\Eloquent\Factories\HasFactory;
6use Illuminate\Database\Eloquent\Model;
7
8class TblQuotationsDeleted extends Model
9{
10    use HasFactory;
11
12    protected $table = 'tbl_quotations_deleted';
13
14    public $timestamps = false;
15
16    protected $fillable = [
17        'quote_id',
18        'internal_quote_id',
19        'company_id',
20        'customer_type_id',
21        'budget_type_id',
22        'budget_status_id',
23        'source_id',
24        'client',
25        'client_type',
26        'segment_id',
27        'phone_number',
28        'email',
29        'issue_date',
30        'request_date',
31        'duration',
32        'order_number',
33        'acceptance_date',
34        'amount',
35        'reason_for_not_following_up',
36        'last_follow_up_date',
37        'last_follow_up_comment',
38        'reason_for_rejection_id',
39        'reason_for_rejection',
40        'commercial',
41        'created_at',
42        'created_by',
43        'updated_at',
44        'updated_by',
45        'for_add',
46        'total_sent',
47        'people_assigned_to_the_job',
48        'duration_of_job_in_days',
49        'estimated_cost_of_materials',
50        'budget_margin_enabled',
51        'question_enabled',
52        'cost_of_labor',
53        'total_cost_of_job',
54        'invoice_margin',
55        'margin_for_the_company',
56        'revenue_per_date_per_worked',
57        'gross_margin',
58        'labor_percentage',
59        'question_ids',
60        'question_ids_no',
61        'approved_at',
62        'approved_by',
63        'rejected_at',
64        'rejected_by',
65        'approved_at_v2',
66        'approved_by_v2',
67        'rejected_at_v2',
68        'rejected_by_v2',
69        'accepted_at',
70        'accepted_by',
71        'x_message_id',
72        'x_status',
73        'from_company_id',
74        'sync_import',
75        'segment_by_g3w',
76        'source_by_g3w',
77        'status_by_g3w',
78        'type_by_g3w',
79        'from_company_id',
80        'box_work_g3w',
81        'user_create_by_g3w',
82        'user_commercial_by_g3w',
83        'g3w_warning',
84        'g3w_warning_fields',
85        'is_validated',
86        'resource_id',
87        'commission_cost',
88        'commission_pct',
89        'reason_id',
90        'reason_for_deletion',
91    ];
92}