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