/home/techb158/immovalet.com/vendor/tightenco/ziggy/src
Edit: /home/techb158/immovalet.com/vendor/tightenco/ziggy/src/CommandRouteGenerator.php (1585B)
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 <<
files->isDirectory(dirname(base_path($path)))) {
$this->files->makeDirectory(dirname(base_path($path)), 0755, true, true);
}
return $path;
}
}