Skip to content

Instantly share code, notes, and snippets.

@abrahamfast
Created August 21, 2016 06:56
Show Gist options
  • Save abrahamfast/b31dfdb0999226bd42540279d6ab1e95 to your computer and use it in GitHub Desktop.
Save abrahamfast/b31dfdb0999226bd42540279d6ab1e95 to your computer and use it in GitHub Desktop.
vue route in laravel
<?php
Route::get('/{vue_capture?}', function () {
return view('home');
})->where('vue_capture', '[\/\w\.-]*');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment