We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fd4440a + 96dbaff commit ec82387Copy full SHA for ec82387
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