We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 899a64a commit 1c89d6bCopy full SHA for 1c89d6b
resources/views/studio/links.blade.php
@@ -2,7 +2,15 @@
2
3
@section('content')
4
5
-<?php use App\Models\Button; ?>
+<?php use App\Models\Button;
6
+
7
+// Check if the LinkCount cookie is set
8
+if (isset($_COOKIE['LinkCount'])) {
9
+ // Set the expiration time of the cookie to one hour in the past
10
+ setcookie('LinkCount', '', time() - 3600);
11
+}
12
13
+?>
14
15
@push('sidebar-stylesheets')
16
<script src="{{ asset('studio/external-dependencies/fontawesome.js') }}" crossorigin="anonymous"></script>
0 commit comments