PATH:
home
/
rwabteecom
/
public_html_old
/
vendor
/
tightenco
/
ziggy
/
src
/
Output
/
Editing: MergeScript.php
<?php namespace Tightenco\Ziggy\Output; use Stringable; use Tightenco\Ziggy\Ziggy; class MergeScript implements Stringable { protected $ziggy; protected $nonce; public function __construct(Ziggy $ziggy, string $nonce = '') { $this->ziggy = $ziggy; $this->nonce = $nonce; } public function __toString(): string { $routes = json_encode($this->ziggy->toArray()['routes']); return <<<HTML <script type="text/javascript"{$this->nonce}> (function () { const routes = {$routes}; Object.assign(Ziggy.routes, routes); })(); </script> HTML; } }
SAVE
CANCEL