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    protected $guarded = [];
11
12    // TODO MA
13    // Add these fields and start tracking them. Please check that this is if seeing this after 15/July/2024
14    // last_login_to_flylearning
15    // total_no_of_characters_typed_by_flyengage
16    // total_no_of_characters_typed_by_flyposts
17    // other_reason_to_sign_out_free_form_field
18
19    public function user()
20    {
21        return $this->belongsTo(User::class, 'email', 'email');
22    }
23}