
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).
19 lines
469 B
PHP
19 lines
469 B
PHP
<?php
|
|
|
|
namespace App\Model\helpdesk\Agent;
|
|
|
|
use App\BaseModel;
|
|
|
|
class Groups extends BaseModel
|
|
{
|
|
protected $table = 'groups';
|
|
|
|
protected $fillable = [
|
|
'name', 'group_status', 'can_create_ticket', 'can_edit_ticket',
|
|
'can_post_ticket', 'can_close_ticket', 'can_assign_ticket',
|
|
'can_delete_ticket', 'can_ban_email',
|
|
'can_manage_canned', 'can_manage_faq', 'can_view_agent_stats',
|
|
'department_access', 'admin_notes',
|
|
];
|
|
}
|