DataMetric.php in Fluent Support – Helpdesk & Customer Support Ticket System 2.3.2, at app/Models/DataMetric.php
| 1 | <?php |
| 2 | |
| 3 | namespace FluentSupport\App\Models; |
| 4 | |
| 5 | class DataMetric extends Model |
| 6 | { |
| 7 | protected $table = 'fs_data_metrix'; |
| 8 | |
| 9 | /** |
| 10 | * The attributes that are mass assignable. |
| 11 | * |
| 12 | * @var array |
| 13 | */ |
| 14 | protected $fillable = [ |
| 15 | 'stat_date', |
| 16 | 'data_type', |
| 17 | 'agent_id', |
| 18 | 'replies', |
| 19 | 'active_tickets', |
| 20 | 'resolved_tickets', |
| 21 | 'unassigned_tickets', |
| 22 | 'close_to_average', |
| 23 | 'new_tickets' |
| 24 | ]; |
| 25 | |
| 26 | } |
| 27 |