
Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions. You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root. For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
25 lines
602 B
PHP
25 lines
602 B
PHP
<?php
|
|
|
|
namespace App\Model\helpdesk\Manage;
|
|
|
|
use App\BaseModel;
|
|
|
|
class Help_topic extends BaseModel
|
|
{
|
|
protected $table = 'help_topic';
|
|
|
|
protected $fillable = [
|
|
'id', 'topic', 'parent_topic', 'custom_form', 'department', 'ticket_status', 'priority',
|
|
'sla_plan', 'thank_page', 'ticket_num_format', 'internal_notes', 'status', 'type', 'auto_assign',
|
|
'auto_response',
|
|
];
|
|
|
|
public function department()
|
|
{
|
|
$related = 'App\Model\helpdesk\Agent\Department';
|
|
$foreignKey = 'department';
|
|
|
|
return $this->belongsTo($related, $foreignKey);
|
|
}
|
|
}
|