Skip to content

Instantly share code, notes, and snippets.

@InnaTarasyan
Created November 29, 2025 16:40
Show Gist options
  • Select an option

  • Save InnaTarasyan/91191ec41c337e5e9384257d48deadda to your computer and use it in GitHub Desktop.

Select an option

Save InnaTarasyan/91191ec41c337e5e9384257d48deadda to your computer and use it in GitHub Desktop.
Blade Component for Client-Side Copy Button
<!-- resources/views/components/copy.blade.php -->
<button
onclick="navigator.clipboard.writeText('{{ $text }}')"
class="px-3 py-1 rounded bg-gray-800 text-white"
>
Copy
</button>
Usage
<x-copy text="My secret code" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment