Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
HubspotProperties
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 user
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace App\Http\Models;
4
5use App\Http\Models\Auth\User;
6
7class HubspotProperties extends Moloquent
8{
9    protected $table = 'hubspot_properties';
10
11    protected $guarded = [];
12
13    // TODO MA
14    // Add these fields and start tracking them. Please check that this is if seeing this after 15/July/2024
15    // last_login_to_flylearning
16    // total_no_of_characters_typed_by_flyengage
17    // total_no_of_characters_typed_by_flyposts
18    // other_reason_to_sign_out_free_form_field
19
20    public function user()
21    {
22        return $this->belongsTo(User::class, 'email', 'email');
23    }
24}