Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| TblQuotationsHistorical | 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 TblQuotationsHistorical extends Model |
| 9 | { |
| 10 | use HasFactory; |
| 11 | protected $table = 'tbl_quotations_historical'; |
| 12 | public $timestamps = false; |
| 13 | protected $fillable = ['quote_id', 'company_id', 'customer_type_id', 'budget_type_id', 'budget_status_id', 'source_id', 'client', 'client_type', 'issue_date', 'request_date', 'duration', 'order_number', 'type', 'acceptance_date', 'status', 'source', 'amount', 'last_follow_up_date', 'last_follow_up_comment', 'reason_for_rejection', 'created_at', 'created_by', 'updated_at', 'updated_by', 'for_add']; |
| 14 | } |