PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
tightenco
/
ziggy
/
src
<?php namespace Tightenco\Ziggy; use Illuminate\Console\Command; use Illuminate\Filesystem\Filesystem; use Tightenco\Ziggy\Ziggy; class CommandRouteGenerator extends Command { protected $signature = 'ziggy:generate {path=./resources/js/ziggy.js : Path to the generated JavaScript file.} {--url=} {--group=}'; protected $description = 'Generate a JavaScript file containing Ziggy’s routes and configuration.'; protected $files; public function __construct(Filesystem $files) { parent::__construct(); $this->files = $files; } public function handle() { $path = $this->argument('path'); $generatedRoutes = $this->generate($this->option('group')); $this->makeDirectory($path); $this->files->put(base_path($path), $generatedRoutes); $this->info('File generated!'); } private function generate($group = false) { $payload = (new Ziggy($group, $this->option('url') ? url($this->option('url')) : null))->toJson(); return <<<JAVASCRIPT const Ziggy = {$payload}; if (typeof window !== 'undefined' && typeof window.Ziggy !== 'undefined') { Object.assign(Ziggy.routes, window.Ziggy.routes); } export { Ziggy }; JAVASCRIPT; } protected function makeDirectory($path) { if (! $this->files->isDirectory(dirname(base_path($path)))) { $this->files->makeDirectory(dirname(base_path($path)), 0755, true, true); } return $path; } }
[+]
js
[+]
..
[-] BladeRouteGenerator.php
[edit]
[-] Ziggy.php
[edit]
[-] ZiggyServiceProvider.php
[edit]
[-] CommandRouteGenerator.php
[edit]