Preparing Your Model
Add HasTickets trait into your User model, along with CanUseTickets interface
1... 2use Coderflex\LaravelTicket\Concerns\HasTickets; 3use Coderflex\LaravelTicket\Contracts\CanUseTickets; 4... 5class User extends Model implements CanUseTickets 6{ 7 ... 8 use HasTickets; 9 ...10}