We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1099dfb commit 96dbaffCopy full SHA for 96dbaff
app/Http/Controllers/TicketAttachmentController.php
@@ -51,7 +51,7 @@ public static function storeTicketAttachments(Request $request, Ticket $ticket,
51
}
52
53
$fileName = uniqid('', true).'.'.$file->getClientOriginalExtension();
54
- $file->storeAs('attachments', $fileName, 'attachments');
+ $file->storeAs('', $fileName, 'attachment-files');
55
56
$attachment = new TicketAttachment();
57
$attachment->user_id = $user->id;
0 commit comments