for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace RexlManu\LaravelTickets\Models;
use Illuminate\Database\Eloquent\Model;
use RexlManu\LaravelTickets\Traits\HasConfigModel;
/**
* Class TicketCategory
*
* Used for declaring a ticket to a specific topic
* @package RexlManu\LaravelTickets\Models
*/
class TicketCategory extends Model
{
use HasConfigModel;
protected $fillable = [
'translation'
];
public function getTable()
return config('laravel-tickets.database.ticket-categories-table');
}