Skip to content

Instantly share code, notes, and snippets.

@elkebirmed
Created July 27, 2020 09:31
Show Gist options
  • Save elkebirmed/b22a8644011a5d1ff6f69c499eea0aa5 to your computer and use it in GitHub Desktop.
Save elkebirmed/b22a8644011a5d1ff6f69c499eea0aa5 to your computer and use it in GitHub Desktop.
<?php
Localizater::group(function () {
Route::view('/', 'welcome');
Route::get('/foo', 'Controller@action');
});
Route::delete('foo', 'Controller@action');
Route::post('login', 'Controller@action');
// Result of locales are (en, fr)
// ------------------------------------
// GET | example.com
// GET | example.com/fr
// GET | example.com/foo
// GET | example.com/fr/foo
// ------------------------------------
// DELETE | example.com/foo
// POST | example.com/login
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment