Skip to content

Instantly share code, notes, and snippets.

@Modelizer
Last active August 25, 2021 11:03
Show Gist options
  • Save Modelizer/005c74c2b60318e0a2b05f9239f4689a to your computer and use it in GitHub Desktop.
Save Modelizer/005c74c2b60318e0a2b05f9239f4689a to your computer and use it in GitHub Desktop.
Regex Laravel Route search and replace.
// Example: controller@index to ['controller', 'index']
// Search. Note: make sure you have space at the start.
'(.*)@(.*?)'
// Replace
\[$1::class, '$2'\]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment