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