Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
TblCompanies
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 TblCompanies extends Model
9{
10    use HasFactory;
11
12    protected $table = 'tbl_companies';
13
14    protected $primaryKey = 'company_id';
15
16    public $timestamps = false;
17
18    protected $fillable = [
19        'name',
20        'fiscal_id',
21        'address',
22        'filename',
23        'filesize',
24        'filetype',
25        'logo',
26        'is_send',
27        'limit_send',
28        'is_send_follow_up',
29        'is_send_executive',
30        'revenue_per_employee_per_day',
31        'minimum_margin',
32        'general_costs',
33        'hours_per_worker_per_day',
34        'cost_of_hour',
35        'hours_per_worker_per_day_percentage',
36        'convert_to_job_amount_limit',
37        'minimum_order_size',
38        'minimum_order_size_v2',
39        'is_send_request',
40        'is_send_g3w',
41        'default_page',
42        'created_at',
43        'created_by',
44        'updated_at',
45        'updated_by',
46        'last_follow_up_date',
47        'limit_reminder_emails',
48        'workflow_budget_size',
49        'is_blocked',
50        'customer_type_ids',
51        'goal_for_the_year',
52        'region',
53        'last_id',
54        'before_last_id',
55        'process_limit',
56        'g3W_active',
57        'invoice_reminder_active',
58        'kpi_filters',
59        'total_investment',
60    ];
61}