movie-night-nuevo/app/Support/LivewireNonce.php
Edward Tirado Jr. dfcd9d5acc
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
fixed nonce
2025-12-14 13:39:39 -06:00

11 lines
154 B
PHP

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