Replies: 4 comments 3 replies
-
@ousid anything? |
Beta Was this translation helpful? Give feedback.
-
Hey, @krekas Sorry for the late response. Yes, you can assign the ticket to another user, take a look here Since the ...
use Coderflex\LaravelTicket\Models\Ticket;
public function store()
{
$user = User::find($userId);
$ticket = $user->tickets()->create($data);
...
// or
$ticket = Ticket::create(array_merge($data, ['user_id' => $userId]);
} You may want to take a look at the Ticket Structure Table to know more. |
Beta Was this translation helpful? Give feedback.
-
@ousid but isn't |
Beta Was this translation helpful? Give feedback.
-
Update on this discussion, the issue in here, is to add the ability to assign users (agents/staff...) to respond to the ticket thread, which the OP, created a PR #8 to resolve the issue. Thanks, @krekas. |
Beta Was this translation helpful? Give feedback.
-
Is there a way to assign ticket to user? Can't see it. Maybe we could add
assigned_to_id
field totickets
table?Beta Was this translation helpful? Give feedback.
All reactions