admin url fx

This commit is contained in:
merdan 2022-11-21 15:27:56 +05:00
parent 426e689518
commit da8f3f602b
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class TicketController extends Controller
public function chat(Request $request)
{
$ticket = Ticket::with('account')->find($request->ticket_id);
$ticket = Ticket::with(['account','category'])->find($request->ticket_id);
return view('admin.messages',[
'ticket' => $ticket
]);