| Total Complexity | 2 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class Followup extends Model |
||
| 9 | { |
||
| 10 | use createdByUser, updatedByUser; |
||
| 11 | |||
| 12 | protected $table = 'trn_enquiry_followups'; |
||
| 13 | |||
| 14 | protected $fillable = [ |
||
| 15 | 'enquiry_id', |
||
| 16 | 'followup_by', |
||
| 17 | 'due_date', |
||
| 18 | 'status', |
||
| 19 | 'outcome', |
||
| 20 | 'created_by', |
||
| 21 | 'updated_by', |
||
| 22 | ]; |
||
| 23 | |||
| 24 | protected $dates = ['created_at', 'updated_at', 'due_date']; |
||
| 25 | |||
| 26 | public function enquiry() |
||
| 29 | } |
||
| 30 | |||
| 31 | public function scopeReminders($query) |
||
| 36 |