fixed nonce
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run

This commit is contained in:
Edward Tirado Jr 2025-12-14 13:39:39 -06:00
parent 6c589a20eb
commit dfcd9d5acc
2 changed files with 12 additions and 1 deletions

View file

@ -0,0 +1,11 @@
<?php
namespace App\Support;
class LivewireNonce
{
public function __invoke()
{
return request()->attributes->get('csp-nonce');
}
}